diff --git a/vendored_parsers/tree-sitter-cmake/.editorconfig b/vendored_parsers/tree-sitter-cmake/.editorconfig new file mode 100644 index 000000000..d3a8b5b69 --- /dev/null +++ b/vendored_parsers/tree-sitter-cmake/.editorconfig @@ -0,0 +1,39 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{json,toml,yml,gyp}] +indent_style = space +indent_size = 2 + +[*.js] +indent_style = space +indent_size = 2 + +[*.rs] +indent_style = space +indent_size = 4 + +[*.{c,cc,h}] +indent_style = space +indent_size = 4 + +[*.{py,pyi}] +indent_style = space +indent_size = 4 + +[*.swift] +indent_style = space +indent_size = 4 + +[*.go] +indent_style = tab +indent_size = 8 + +[Makefile] +indent_style = tab +indent_size = 8 diff --git a/vendored_parsers/tree-sitter-cmake/.gitattributes b/vendored_parsers/tree-sitter-cmake/.gitattributes new file mode 100644 index 000000000..ffb52abec --- /dev/null +++ b/vendored_parsers/tree-sitter-cmake/.gitattributes @@ -0,0 +1,11 @@ +* text eol=lf + +src/*.json linguist-generated +src/parser.c linguist-generated +src/tree_sitter/* linguist-generated + +bindings/** linguist-generated +binding.gyp linguist-generated +setup.py linguist-generated +Makefile linguist-generated +Package.swift linguist-generated diff --git a/vendored_parsers/tree-sitter-cmake/Cargo.toml b/vendored_parsers/tree-sitter-cmake/Cargo.toml index 3e38b25ba..dd5832f3a 100644 --- a/vendored_parsers/tree-sitter-cmake/Cargo.toml +++ b/vendored_parsers/tree-sitter-cmake/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-cmake" description = "cmake grammar for the tree-sitter parsing library" -version = "0.2.0" +version = "0.4.3" keywords = ["incremental", "parsing", "cmake"] categories = ["parsing", "text-editors"] repository = "https://github.com/uyha/tree-sitter-cmake" @@ -20,7 +20,7 @@ include = [ path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = "~0.20" +tree-sitter = ">=0.22" [build-dependencies] cc = "1.0" diff --git a/vendored_parsers/tree-sitter-cmake/Makefile b/vendored_parsers/tree-sitter-cmake/Makefile new file mode 100644 index 000000000..ea22a792e --- /dev/null +++ b/vendored_parsers/tree-sitter-cmake/Makefile @@ -0,0 +1,109 @@ +VERSION := 0.0.1 + +LANGUAGE_NAME := tree-sitter-cmake + +# repository +SRC_DIR := src + +PARSER_REPO_URL := $(shell git -C $(SRC_DIR) remote get-url origin 2>/dev/null) + +ifeq ($(PARSER_URL),) + PARSER_URL := $(subst .git,,$(PARSER_REPO_URL)) +ifeq ($(shell echo $(PARSER_URL) | grep '^[a-z][-+.0-9a-z]*://'),) + PARSER_URL := $(subst :,/,$(PARSER_URL)) + PARSER_URL := $(subst git@,https://,$(PARSER_URL)) +endif +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)) + +# flags +ARFLAGS := rcs +override CFLAGS += -I$(SRC_DIR) -std=c11 -fPIC + +# OS-specific bits +ifeq ($(OS),Windows_NT) + $(error "Windows is not supported") +else ifeq ($(shell uname),Darwin) + SOEXT = dylib + SOEXTVER_MAJOR = $(SONAME_MAJOR).dylib + SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).dylib + 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 +else + SOEXT = so + SOEXTVER_MAJOR = so.$(SONAME_MAJOR) + SOEXTVER = so.$(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) +endif +ifneq ($(filter $(shell uname),FreeBSD NetBSD DragonFly),) + PCLIBDIR := $(PREFIX)/libdata/pkgconfig +endif + +all: lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) $(LANGUAGE_NAME).pc + +lib$(LANGUAGE_NAME).a: $(OBJS) + $(AR) $(ARFLAGS) $@ $^ + +lib$(LANGUAGE_NAME).$(SOEXT): $(OBJS) + $(CC) $(LDFLAGS) $(LINKSHARED) $^ $(LDLIBS) -o $@ +ifneq ($(STRIP),) + $(STRIP) $@ +endif + +$(LANGUAGE_NAME).pc: bindings/c/$(LANGUAGE_NAME).pc.in + sed -e 's|@URL@|$(PARSER_URL)|' \ + -e 's|@VERSION@|$(VERSION)|' \ + -e 's|@LIBDIR@|$(LIBDIR)|' \ + -e 's|@INCLUDEDIR@|$(INCLUDEDIR)|' \ + -e 's|@REQUIRES@|$(REQUIRES)|' \ + -e 's|@ADDITIONAL_LIBS@|$(ADDITIONAL_LIBS)|' \ + -e 's|=$(PREFIX)|=$${prefix}|' \ + -e 's|@PREFIX@|$(PREFIX)|' $< > $@ + +$(SRC_DIR)/parser.c: grammar.js + $(TS) generate --no-bindings + +install: all + install -Dm644 bindings/c/$(LANGUAGE_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h + install -Dm644 $(LANGUAGE_NAME).pc '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc + install -Dm755 lib$(LANGUAGE_NAME).a '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a + install -m755 lib$(LANGUAGE_NAME).$(SOEXT) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) + ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) + ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) + +uninstall: + $(RM) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) \ + '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h \ + '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc + +clean: + $(RM) $(OBJS) $(LANGUAGE_NAME).pc lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) + +test: + $(TS) test + +.PHONY: all install uninstall clean test diff --git a/vendored_parsers/tree-sitter-cmake/Package.swift b/vendored_parsers/tree-sitter-cmake/Package.swift new file mode 100644 index 000000000..64f4c0826 --- /dev/null +++ b/vendored_parsers/tree-sitter-cmake/Package.swift @@ -0,0 +1,48 @@ +// swift-tools-version:5.3 +import PackageDescription + +let package = Package( + name: "TreeSitterCmake", + platforms: [.macOS(.v10_13), .iOS(.v11)], + products: [ + .library(name: "TreeSitterCmake", targets: ["TreeSitterCmake"]), + ], + dependencies: [], + targets: [ + .target(name: "TreeSitterCmake", + 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")]) + ], + cLanguageStandard: .c11 +) diff --git a/vendored_parsers/tree-sitter-cmake/binding.gyp b/vendored_parsers/tree-sitter-cmake/binding.gyp index a2beb8a05..33c973d4d 100644 --- a/vendored_parsers/tree-sitter-cmake/binding.gyp +++ b/vendored_parsers/tree-sitter-cmake/binding.gyp @@ -1,19 +1,21 @@ { "targets": [ { - "target_name": "tree_sitter_CMake_binding", + "target_name": "tree_sitter_cmake_binding", + "dependencies": [ + " -#include "nan.h" +#include -using namespace v8; +typedef struct TSLanguage TSLanguage; -extern "C" TSLanguage * tree_sitter_cmake(); +extern "C" TSLanguage *tree_sitter_cmake(); -namespace { +// "tree-sitter", "language" hashed with BLAKE2 +const napi_type_tag LANGUAGE_TYPE_TAG = { + 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 +}; -NAN_METHOD(New) {} - -void Init(Local exports, Local module) { - Local tpl = Nan::New(New); - tpl->SetClassName(Nan::New("Language").ToLocalChecked()); - tpl->InstanceTemplate()->SetInternalFieldCount(1); - - Local constructor = Nan::GetFunction(tpl).ToLocalChecked(); - Local instance = constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); - Nan::SetInternalFieldPointer(instance, 0, tree_sitter_cmake()); - - Nan::Set(instance, Nan::New("name").ToLocalChecked(), Nan::New("cmake").ToLocalChecked()); - Nan::Set(module, Nan::New("exports").ToLocalChecked(), instance); +Napi::Object Init(Napi::Env env, Napi::Object exports) { + exports["name"] = Napi::String::New(env, "cmake"); + auto language = Napi::External::New(env, tree_sitter_cmake()); + language.TypeTag(&LANGUAGE_TYPE_TAG); + exports["language"] = language; + return exports; } -NODE_MODULE(tree_sitter_cmake_binding, Init) - -} // namespace +NODE_API_MODULE(tree_sitter_cmake_binding, Init) diff --git a/vendored_parsers/tree-sitter-cmake/bindings/node/index.d.ts b/vendored_parsers/tree-sitter-cmake/bindings/node/index.d.ts new file mode 100644 index 000000000..efe259eed --- /dev/null +++ b/vendored_parsers/tree-sitter-cmake/bindings/node/index.d.ts @@ -0,0 +1,28 @@ +type BaseNode = { + type: string; + named: boolean; +}; + +type ChildNode = { + multiple: boolean; + required: boolean; + types: BaseNode[]; +}; + +type NodeInfo = + | (BaseNode & { + subtypes: BaseNode[]; + }) + | (BaseNode & { + fields: { [name: string]: ChildNode }; + children: ChildNode[]; + }); + +type Language = { + name: string; + language: unknown; + nodeTypeInfo: NodeInfo[]; +}; + +declare const language: Language; +export = language; diff --git a/vendored_parsers/tree-sitter-cmake/bindings/node/index.js b/vendored_parsers/tree-sitter-cmake/bindings/node/index.js index 12513d4a2..6657bcf42 100644 --- a/vendored_parsers/tree-sitter-cmake/bindings/node/index.js +++ b/vendored_parsers/tree-sitter-cmake/bindings/node/index.js @@ -1,18 +1,6 @@ -try { - module.exports = require("../../build/Release/tree_sitter_cmake_binding"); -} catch (error1) { - if (error1.code !== 'MODULE_NOT_FOUND') { - throw error1; - } - try { - module.exports = require("../../build/Debug/tree_sitter_cmake_binding"); - } catch (error2) { - if (error2.code !== 'MODULE_NOT_FOUND') { - throw error2; - } - throw error1 - } -} +const root = require("path").join(__dirname, "..", ".."); + +module.exports = require("node-gyp-build")(root); try { module.exports.nodeTypeInfo = require("../../src/node-types.json"); diff --git a/vendored_parsers/tree-sitter-cmake/bindings/python/tree_sitter_cmake/__init__.py b/vendored_parsers/tree-sitter-cmake/bindings/python/tree_sitter_cmake/__init__.py new file mode 100644 index 000000000..c8043ee7d --- /dev/null +++ b/vendored_parsers/tree-sitter-cmake/bindings/python/tree_sitter_cmake/__init__.py @@ -0,0 +1,5 @@ +"Cmake grammar for tree-sitter" + +from ._binding import language + +__all__ = ["language"] diff --git a/vendored_parsers/tree-sitter-cmake/bindings/python/tree_sitter_cmake/__init__.pyi b/vendored_parsers/tree-sitter-cmake/bindings/python/tree_sitter_cmake/__init__.pyi new file mode 100644 index 000000000..5416666fc --- /dev/null +++ b/vendored_parsers/tree-sitter-cmake/bindings/python/tree_sitter_cmake/__init__.pyi @@ -0,0 +1 @@ +def language() -> int: ... diff --git a/vendored_parsers/tree-sitter-cmake/bindings/python/tree_sitter_cmake/binding.c b/vendored_parsers/tree-sitter-cmake/bindings/python/tree_sitter_cmake/binding.c new file mode 100644 index 000000000..d8edae252 --- /dev/null +++ b/vendored_parsers/tree-sitter-cmake/bindings/python/tree_sitter_cmake/binding.c @@ -0,0 +1,27 @@ +#include + +typedef struct TSLanguage TSLanguage; + +TSLanguage *tree_sitter_cmake(void); + +static PyObject* _binding_language(PyObject *self, PyObject *args) { + return PyLong_FromVoidPtr(tree_sitter_cmake()); +} + +static PyMethodDef methods[] = { + {"language", _binding_language, METH_NOARGS, + "Get the tree-sitter language for this grammar."}, + {NULL, NULL, 0, NULL} +}; + +static struct PyModuleDef module = { + .m_base = PyModuleDef_HEAD_INIT, + .m_name = "_binding", + .m_doc = NULL, + .m_size = -1, + .m_methods = methods +}; + +PyMODINIT_FUNC PyInit__binding(void) { + return PyModule_Create(&module); +} diff --git a/vendored_parsers/tree-sitter-cmake/bindings/python/tree_sitter_cmake/py.typed b/vendored_parsers/tree-sitter-cmake/bindings/python/tree_sitter_cmake/py.typed new file mode 100644 index 000000000..e69de29bb diff --git a/vendored_parsers/tree-sitter-cmake/bindings/rust/build.rs b/vendored_parsers/tree-sitter-cmake/bindings/rust/build.rs index 618e90a3a..8f87ee668 100644 --- a/vendored_parsers/tree-sitter-cmake/bindings/rust/build.rs +++ b/vendored_parsers/tree-sitter-cmake/bindings/rust/build.rs @@ -10,29 +10,10 @@ fn main() { let parser_path = src_dir.join("parser.c"); c_config.file(&parser_path); - // If your language uses an external scanner written in C, - // then include this block of code: - - /* let scanner_path = src_dir.join("scanner.c"); c_config.file(&scanner_path); println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); - */ c_config.compile("parser"); println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); - - // If your language uses an external scanner written in C++, - // then include this block of code: - - let mut cpp_config = cc::Build::new(); - cpp_config.cpp(true); - cpp_config.include(&src_dir); - cpp_config - .flag_if_supported("-Wno-unused-parameter") - .flag_if_supported("-Wno-unused-but-set-variable"); - let scanner_path = src_dir.join("scanner.cc"); - cpp_config.file(&scanner_path); - cpp_config.compile("scanner"); - println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); } diff --git a/vendored_parsers/tree-sitter-cmake/bindings/swift/TreeSitterCmake/cmake.h b/vendored_parsers/tree-sitter-cmake/bindings/swift/TreeSitterCmake/cmake.h new file mode 100644 index 000000000..b7d7d2d12 --- /dev/null +++ b/vendored_parsers/tree-sitter-cmake/bindings/swift/TreeSitterCmake/cmake.h @@ -0,0 +1,16 @@ +#ifndef TREE_SITTER_CMAKE_H_ +#define TREE_SITTER_CMAKE_H_ + +typedef struct TSLanguage TSLanguage; + +#ifdef __cplusplus +extern "C" { +#endif + +const TSLanguage *tree_sitter_cmake(void); + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_CMAKE_H_ diff --git a/vendored_parsers/tree-sitter-cmake/corpus/block_commands.txt b/vendored_parsers/tree-sitter-cmake/corpus/block_commands.txt deleted file mode 100644 index e303c8046..000000000 --- a/vendored_parsers/tree-sitter-cmake/corpus/block_commands.txt +++ /dev/null @@ -1,140 +0,0 @@ -====================================================== -Function definition with no arguments [block_commands] -====================================================== - -function(fn) -endfunction() - ---- -(source_file - (function_def - (function_command - (function) - (argument - (unquoted_argument) - ) - ) - (endfunction_command - (endfunction) - ) - ) -) - -======================================================== -Function definition with many arguments [block_commands] -======================================================== - -function(fn arg1 arg2 arg3) -endfunction() - ---- -(source_file - (function_def - (function_command - (function) - (argument - (unquoted_argument) - ) - (argument - (unquoted_argument) - ) - (argument - (unquoted_argument) - ) - (argument - (unquoted_argument) - ) - ) - (endfunction_command - (endfunction) - ) - ) -) - -=================================================== -Macro definition with no arguments [block_commands] -=================================================== - -macro(fn) -endmacro() - ---- -(source_file - (macro_def - (macro_command - (macro) - (argument - (unquoted_argument) - ) - ) - (endmacro_command - (endmacro) - ) - ) -) - -======================================================== -macro definition with many arguments [block_commands] -======================================================== - -macro(fn arg1 arg2 arg3) -endmacro() - ---- -(source_file - (macro_def - (macro_command - (macro) - (argument - (unquoted_argument) - ) - (argument - (unquoted_argument) - ) - (argument - (unquoted_argument) - ) - (argument - (unquoted_argument) - ) - ) - (endmacro_command - (endmacro) - ) - ) -) - -============================ -Block scope [block_commands] -============================ - -block(SCOPE_FOR POLICIES VARIABLES PROPAGATE var) -endblock() - ---- -(source_file - (block_def - (block_command - (block) - (argument - (unquoted_argument) - ) - (argument - (unquoted_argument) - ) - (argument - (unquoted_argument) - ) - (argument - (unquoted_argument) - ) - (argument - (unquoted_argument) - ) - ) - (endblock_command - (endblock) - ) - ) -) - diff --git a/vendored_parsers/tree-sitter-cmake/corpus/condition.txt b/vendored_parsers/tree-sitter-cmake/corpus/condition.txt deleted file mode 100644 index 0942b559f..000000000 --- a/vendored_parsers/tree-sitter-cmake/corpus/condition.txt +++ /dev/null @@ -1,147 +0,0 @@ -==================== -Empty if [condition] -==================== -if ( cond ) -endif() - ---- - -(source_file - (if_condition - (if_command - (if) - (argument (unquoted_argument)) - ) - (endif_command (endif)) - ) -) - -=========================== -Empty if elseif [condition] -=========================== -if(cond) -elseif(cond) -endif() - ---- - -(source_file - (if_condition - (if_command - (if) - (argument (unquoted_argument)) - ) - (elseif_command - (elseif) - (argument (unquoted_argument)) - ) - (endif_command (endif)) - ) -) - -================================ -Empty if elseif else [condition] -================================ -if(cond) -elseif(cond) -else() -endif() - ---- - -(source_file - (if_condition - (if_command - (if) - (argument (unquoted_argument)) - ) - (elseif_command - (elseif) - (argument (unquoted_argument)) - ) - (else_command (else)) - (endif_command (endif)) - ) -) - -========================================== -If with one command invocation [condition] -========================================== -if(cond) - message(STATUS) -endif() - ---- - -(source_file - (if_condition - (if_command - (if) - (argument (unquoted_argument)) - ) - (normal_command - (identifier) - (argument (unquoted_argument)) - ) - (endif_command (endif)) - ) -) - -====================================== -Condition with parentheses [condition] -====================================== -if((A AND B) OR C) -endif() ---- -(source_file - (if_condition - (if_command - (if) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - ) - (endif_command (endif)) - ) -) - -============================================== -Condition with not and parentheses [condition] -============================================== -if(NOT (A AND B) OR C) -else(NOT (A AND B) OR C) -endif(NOT (A AND B) OR C) ---- -(source_file - (if_condition - (if_command - (if) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - ) - (else_command - (else) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - ) - (endif_command - (endif) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - ) - ) -) diff --git a/vendored_parsers/tree-sitter-cmake/corpus/escape_sequence.txt b/vendored_parsers/tree-sitter-cmake/corpus/escape_sequence.txt deleted file mode 100644 index 23c3cc468..000000000 --- a/vendored_parsers/tree-sitter-cmake/corpus/escape_sequence.txt +++ /dev/null @@ -1,18 +0,0 @@ -======================================== -Escape sequence of "\;" [Escape_sequence] -========================================= - -set(var "It is \; and \"") - ---- - -(source_file - (normal_command - (identifier) - (argument - (unquoted_argument)) - (argument - (quoted_argument - (quoted_element - (escape_sequence) - (escape_sequence)))))) diff --git a/vendored_parsers/tree-sitter-cmake/corpus/foreach.txt b/vendored_parsers/tree-sitter-cmake/corpus/foreach.txt deleted file mode 100644 index 083e1a820..000000000 --- a/vendored_parsers/tree-sitter-cmake/corpus/foreach.txt +++ /dev/null @@ -1,117 +0,0 @@ -================================== -Empty foreach loop [foreach] -================================== - -foreach(var) -endforeach() - ---- - -(source_file - (foreach_loop - (foreach_command - (foreach) - (argument (unquoted_argument)) - ) - (endforeach_command (endforeach)) - ) - ) - -=============================================================== -Empty foreach loop with one argument endforeach [foreach] -=============================================================== - -foreach(var) -endforeach(var) - ---- - -(source_file - (foreach_loop - (foreach_command - (foreach) - (argument (unquoted_argument)) - ) - (endforeach_command - (endforeach) - (argument (unquoted_argument)) - ) - )) - -================================= -Uppercase foreach [foreach] -================================= - -FOREACH(var) -ENDFOREACH() - ---- - -(source_file - (foreach_loop - (foreach_command - (foreach) - (argument (unquoted_argument)) - ) - (endforeach_command (endforeach)) - ) - ) - -================================== -Mixed case foreach [foreach] -================================== - -forEach(var) -endForEach() - ---- - -(source_file - (foreach_loop - (foreach_command - (foreach) - (argument (unquoted_argument)) - ) - (endforeach_command (endforeach)) - ) - ) - -================================== -Empty IN [foreach] -================================== - -foreach(var IN) -endforeach() - ---- - -(source_file - (foreach_loop - (foreach_command - (foreach) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - ) - (endforeach_command (endforeach)) - ) - ) - -================================== -Empty RANGE [foreach] -================================== - -foreach(var RANGE) -endforeach() - ---- - -(source_file - (foreach_loop - (foreach_command - (foreach) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - ) - (endforeach_command (endforeach)) - ) - ) diff --git a/vendored_parsers/tree-sitter-cmake/grammar.js b/vendored_parsers/tree-sitter-cmake/grammar.js index 2cf1279df..083c552aa 100644 --- a/vendored_parsers/tree-sitter-cmake/grammar.js +++ b/vendored_parsers/tree-sitter-cmake/grammar.js @@ -12,7 +12,7 @@ commands = [ "macro", "endmacro", "block", - "endblock" + "endblock", ]; module.exports = grammar({ @@ -27,7 +27,7 @@ module.exports = grammar({ escape_sequence: ($) => choice($._escape_identity, $._escape_encoded, $._escape_semicolon), _escape_identity: (_) => /\\[^A-Za-z0-9;]/, _escape_encoded: (_) => choice("\\t", "\\r", "\\n"), - _escape_semicolon: (_) => choice(";","\\;"), + _escape_semicolon: (_) => choice(";", "\\;"), variable: ($) => prec.left(repeat1(choice(/[a-zA-Z0-9/_.+-]/, $.escape_sequence, $.variable_ref))), variable_ref: ($) => choice($.normal_var, $.env_var, $.cache_var), @@ -45,43 +45,42 @@ module.exports = grammar({ quoted_argument: ($) => seq('"', optional($.quoted_element), '"'), quoted_element: ($) => repeat1(choice($.variable_ref, $.gen_exp, $._quoted_text, $.escape_sequence)), - _quoted_text: ($) => prec.left(repeat1(choice('$', /[^\\"]/))), - - unquoted_argument: ($) => prec.right(repeat1(choice($.variable_ref, $.gen_exp, $._unquoted_text, $.escape_sequence))), - _unquoted_text: ($) => prec.left(repeat1(choice('$', /[^()#"\\']/))), - - if_command: ($) => command($.if, repeat($._untrimmed_argument)), - elseif_command: ($) => command($.elseif, repeat($._untrimmed_argument)), - else_command: ($) => command($.else, repeat($._untrimmed_argument)), - endif_command: ($) => command($.endif, repeat($._untrimmed_argument)), - if_condition: ($) => - seq( - $.if_command, - repeat(choice($._untrimmed_command_invocation, $.elseif_command, $.else_command)), - $.endif_command - ), - - foreach_command: ($) => command($.foreach, repeat($._untrimmed_argument)), + _quoted_text: (_) => prec.left(repeat1(choice("$", /[^\\"]/))), + + unquoted_argument: ($) => + prec.right(repeat1(choice($.variable_ref, $.gen_exp, $._unquoted_text, $.escape_sequence))), + _unquoted_text: (_) => prec.left(repeat1(choice("$", /[^()#"\\]/))), + + body: ($) => prec.right(repeat1($._untrimmed_command_invocation)), + argument_list: ($) => repeat1($._untrimmed_argument), + + if_command: ($) => command($.if, $.argument_list), + elseif_command: ($) => command($.elseif, $.argument_list), + else_command: ($) => command($.else, optional($.argument_list)), + endif_command: ($) => command($.endif, optional($.argument_list)), + if_condition: ($) => seq($.if_command, repeat(choice($.body, $.elseif_command, $.else_command)), $.endif_command), + + foreach_command: ($) => command($.foreach, $.argument_list), endforeach_command: ($) => command($.endforeach, optional($.argument)), - foreach_loop: ($) => seq($.foreach_command, repeat($._untrimmed_command_invocation), $.endforeach_command), + foreach_loop: ($) => seq($.foreach_command, $.body, $.endforeach_command), - while_command: ($) => command($.while, repeat($._untrimmed_argument)), + while_command: ($) => command($.while, $.argument_list), endwhile_command: ($) => command($.endwhile, optional(seq(/\s*/, $.argument, /\s*/))), - while_loop: ($) => seq($.while_command, repeat($._untrimmed_command_invocation), $.endwhile_command), + while_loop: ($) => seq($.while_command, $.body, $.endwhile_command), - function_command: ($) => command($.function, repeat($._untrimmed_argument)), - endfunction_command: ($) => command($.endfunction, repeat($._untrimmed_argument)), - function_def: ($) => seq($.function_command, repeat($._untrimmed_command_invocation), $.endfunction_command), + function_command: ($) => command($.function, $.argument_list), + endfunction_command: ($) => command($.endfunction, optional($.argument_list)), + function_def: ($) => seq($.function_command, $.body, $.endfunction_command), - macro_command: ($) => command($.macro, repeat($._untrimmed_argument)), - endmacro_command: ($) => command($.endmacro, repeat($._untrimmed_argument)), - macro_def: ($) => seq($.macro_command, repeat($._untrimmed_command_invocation), $.endmacro_command), + macro_command: ($) => command($.macro, $.argument_list), + endmacro_command: ($) => command($.endmacro, optional($.argument_list)), + macro_def: ($) => seq($.macro_command, $.body, $.endmacro_command), - block_command: ($) => command($.block, repeat($._untrimmed_argument)), - endblock_command: ($) => command($.endblock, repeat($._untrimmed_argument)), - block_def: ($) => seq($.block_command, repeat($._untrimmed_command_invocation), $.endblock_command), + block_command: ($) => command($.block, $.argument_list), + endblock_command: ($) => command($.endblock, optional($.argument_list)), + block_def: ($) => seq($.block_command, $.body, $.endblock_command), - normal_command: ($) => command($.identifier, repeat($._untrimmed_argument)), + normal_command: ($) => command($.identifier, optional($.argument_list)), _command_invocation: ($) => choice($.normal_command, $.if_condition, $.foreach_loop, $.while_loop, $.function_def, $.macro_def, $.block_def), diff --git a/vendored_parsers/tree-sitter-cmake/package.json b/vendored_parsers/tree-sitter-cmake/package.json index 5b946e428..dc315f349 100644 --- a/vendored_parsers/tree-sitter-cmake/package.json +++ b/vendored_parsers/tree-sitter-cmake/package.json @@ -1,12 +1,22 @@ { "name": "tree-sitter-cmake", - "version": "0.2.0", + "version": "0.4.3", "description": "CMake grammar for tree-sitter", "main": "bindings/node", + "types": "bindings/node", "author": "Uy Ha", "license": "MIT", "dependencies": { - "nan": "^2.16.0" + "node-addon-api": "^7.1.0", + "node-gyp-build": "^4.8.0" + }, + "peerDependencies": { + "tree-sitter": "^0.21.0" + }, + "peerDependenciesMeta": { + "tree_sitter": { + "optional": true + } }, "tree-sitter": [ { @@ -18,6 +28,19 @@ } ], "devDependencies": { - "tree-sitter-cli": "^0.20.6" - } + "tree-sitter-cli": "^0.21.0", + "prebuildify": "^6.0.0" + }, + "scripts": { + "install": "node-gyp-build", + "prebuildify": "prebuildify --napi --strip" + }, + "files": [ + "grammar.js", + "binding.gyp", + "prebuilds/**", + "bindings/node/*", + "queries/*", + "src/**" + ] } diff --git a/vendored_parsers/tree-sitter-cmake/pyproject.toml b/vendored_parsers/tree-sitter-cmake/pyproject.toml new file mode 100644 index 000000000..3a449c749 --- /dev/null +++ b/vendored_parsers/tree-sitter-cmake/pyproject.toml @@ -0,0 +1,29 @@ +[build-system] +requires = ["setuptools>=42", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "tree-sitter-cmake" +description = "Cmake grammar for tree-sitter" +version = "0.0.1" +keywords = ["incremental", "parsing", "tree-sitter", "cmake"] +classifiers = [ + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Topic :: Software Development :: Compilers", + "Topic :: Text Processing :: Linguistic", + "Typing :: Typed" +] +requires-python = ">=3.8" +license.text = "MIT" +readme = "README.md" + +[project.urls] +Homepage = "https://github.com/tree-sitter/tree-sitter-cmake" + +[project.optional-dependencies] +core = ["tree-sitter~=0.21"] + +[tool.cibuildwheel] +build = "cp38-*" +build-frontend = "build" diff --git a/vendored_parsers/tree-sitter-cmake/setup.py b/vendored_parsers/tree-sitter-cmake/setup.py new file mode 100644 index 000000000..055cad66d --- /dev/null +++ b/vendored_parsers/tree-sitter-cmake/setup.py @@ -0,0 +1,57 @@ +from os.path import isdir, join +from platform import system + +from setuptools import Extension, find_packages, setup +from setuptools.command.build import build +from wheel.bdist_wheel import bdist_wheel + + +class Build(build): + def run(self): + if isdir("queries"): + dest = join(self.build_lib, "tree_sitter_cmake", "queries") + self.copy_tree("queries", dest) + super().run() + + +class BdistWheel(bdist_wheel): + def get_tag(self): + python, abi, platform = super().get_tag() + if python.startswith("cp"): + python, abi = "cp38", "abi3" + return python, abi, platform + + +setup( + packages=find_packages("bindings/python"), + package_dir={"": "bindings/python"}, + package_data={ + "tree_sitter_cmake": ["*.pyi", "py.typed"], + "tree_sitter_cmake.queries": ["*.scm"], + }, + ext_package="tree_sitter_cmake", + ext_modules=[ + Extension( + name="_binding", + sources=[ + "bindings/python/tree_sitter_cmake/binding.c", + "src/parser.c", + # NOTE: if your language uses an external scanner, add it here. + ], + extra_compile_args=( + ["-std=c11"] if system() != 'Windows' else [] + ), + define_macros=[ + ("Py_LIMITED_API", "0x03080000"), + ("PY_SSIZE_T_CLEAN", None) + ], + include_dirs=["src"], + py_limited_api=True, + ) + ], + cmdclass={ + "build": Build, + "bdist_wheel": BdistWheel + }, + zip_safe=False +) diff --git a/vendored_parsers/tree-sitter-cmake/src/grammar.json b/vendored_parsers/tree-sitter-cmake/src/grammar.json index 81c66c091..ab2ab9ac2 100644 --- a/vendored_parsers/tree-sitter-cmake/src/grammar.json +++ b/vendored_parsers/tree-sitter-cmake/src/grammar.json @@ -427,12 +427,30 @@ }, { "type": "PATTERN", - "value": "[^()#\"\\\\']" + "value": "[^()#\"\\\\]" } ] } } }, + "body": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_untrimmed_command_invocation" + } + } + }, + "argument_list": { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_untrimmed_argument" + } + }, "if_command": { "type": "SEQ", "members": [ @@ -452,11 +470,8 @@ "value": "(" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_untrimmed_argument" - } + "type": "SYMBOL", + "name": "argument_list" }, { "type": "STRING", @@ -483,11 +498,8 @@ "value": "(" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_untrimmed_argument" - } + "type": "SYMBOL", + "name": "argument_list" }, { "type": "STRING", @@ -514,11 +526,16 @@ "value": "(" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_untrimmed_argument" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -545,11 +562,16 @@ "value": "(" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_untrimmed_argument" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -571,7 +593,7 @@ "members": [ { "type": "SYMBOL", - "name": "_untrimmed_command_invocation" + "name": "body" }, { "type": "SYMBOL", @@ -609,11 +631,8 @@ "value": "(" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_untrimmed_argument" - } + "type": "SYMBOL", + "name": "argument_list" }, { "type": "STRING", @@ -665,11 +684,8 @@ "name": "foreach_command" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_untrimmed_command_invocation" - } + "type": "SYMBOL", + "name": "body" }, { "type": "SYMBOL", @@ -696,11 +712,8 @@ "value": "(" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_untrimmed_argument" - } + "type": "SYMBOL", + "name": "argument_list" }, { "type": "STRING", @@ -765,11 +778,8 @@ "name": "while_command" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_untrimmed_command_invocation" - } + "type": "SYMBOL", + "name": "body" }, { "type": "SYMBOL", @@ -796,11 +806,8 @@ "value": "(" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_untrimmed_argument" - } + "type": "SYMBOL", + "name": "argument_list" }, { "type": "STRING", @@ -827,11 +834,16 @@ "value": "(" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_untrimmed_argument" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -847,11 +859,8 @@ "name": "function_command" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_untrimmed_command_invocation" - } + "type": "SYMBOL", + "name": "body" }, { "type": "SYMBOL", @@ -878,11 +887,8 @@ "value": "(" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_untrimmed_argument" - } + "type": "SYMBOL", + "name": "argument_list" }, { "type": "STRING", @@ -909,11 +915,16 @@ "value": "(" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_untrimmed_argument" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -929,11 +940,8 @@ "name": "macro_command" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_untrimmed_command_invocation" - } + "type": "SYMBOL", + "name": "body" }, { "type": "SYMBOL", @@ -960,11 +968,8 @@ "value": "(" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_untrimmed_argument" - } + "type": "SYMBOL", + "name": "argument_list" }, { "type": "STRING", @@ -991,11 +996,16 @@ "value": "(" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_untrimmed_argument" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -1011,11 +1021,8 @@ "name": "block_command" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_untrimmed_command_invocation" - } + "type": "SYMBOL", + "name": "body" }, { "type": "SYMBOL", @@ -1042,11 +1049,16 @@ "value": "(" }, { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_untrimmed_argument" - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "BLANK" + } + ] }, { "type": "STRING", @@ -1193,4 +1205,3 @@ "inline": [], "supertypes": [] } - diff --git a/vendored_parsers/tree-sitter-cmake/src/node-types.json b/vendored_parsers/tree-sitter-cmake/src/node-types.json index 8b70cad5a..dafd9632c 100644 --- a/vendored_parsers/tree-sitter-cmake/src/node-types.json +++ b/vendored_parsers/tree-sitter-cmake/src/node-types.json @@ -23,27 +23,42 @@ } }, { - "type": "block_command", + "type": "argument_list", "named": true, "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "argument", "named": true }, { - "type": "block", + "type": "bracket_comment", "named": true }, { - "type": "bracket_comment", + "type": "line_comment", + "named": true + } + ] + } + }, + { + "type": "block_command", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "argument_list", "named": true }, { - "type": "line_comment", + "type": "block", "named": true } ] @@ -62,15 +77,30 @@ "named": true }, { - "type": "block_def", + "type": "body", "named": true }, { - "type": "bracket_comment", + "type": "endblock_command", + "named": true + } + ] + } + }, + { + "type": "body", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "block_def", "named": true }, { - "type": "endblock_command", + "type": "bracket_comment", "named": true }, { @@ -128,20 +158,12 @@ "required": true, "types": [ { - "type": "argument", - "named": true - }, - { - "type": "bracket_comment", + "type": "argument_list", "named": true }, { "type": "else", "named": true - }, - { - "type": "line_comment", - "named": true } ] } @@ -155,20 +177,12 @@ "required": true, "types": [ { - "type": "argument", - "named": true - }, - { - "type": "bracket_comment", + "type": "argument_list", "named": true }, { "type": "elseif", "named": true - }, - { - "type": "line_comment", - "named": true } ] } @@ -182,20 +196,12 @@ "required": true, "types": [ { - "type": "argument", - "named": true - }, - { - "type": "bracket_comment", + "type": "argument_list", "named": true }, { "type": "endblock", "named": true - }, - { - "type": "line_comment", - "named": true } ] } @@ -228,20 +234,12 @@ "required": true, "types": [ { - "type": "argument", - "named": true - }, - { - "type": "bracket_comment", + "type": "argument_list", "named": true }, { "type": "endfunction", "named": true - }, - { - "type": "line_comment", - "named": true } ] } @@ -255,20 +253,12 @@ "required": true, "types": [ { - "type": "argument", - "named": true - }, - { - "type": "bracket_comment", + "type": "argument_list", "named": true }, { "type": "endif", "named": true - }, - { - "type": "line_comment", - "named": true } ] } @@ -282,20 +272,12 @@ "required": true, "types": [ { - "type": "argument", - "named": true - }, - { - "type": "bracket_comment", + "type": "argument_list", "named": true }, { "type": "endmacro", "named": true - }, - { - "type": "line_comment", - "named": true } ] } @@ -348,20 +330,12 @@ "required": true, "types": [ { - "type": "argument", - "named": true - }, - { - "type": "bracket_comment", + "type": "argument_list", "named": true }, { "type": "foreach", "named": true - }, - { - "type": "line_comment", - "named": true } ] } @@ -375,11 +349,7 @@ "required": true, "types": [ { - "type": "block_def", - "named": true - }, - { - "type": "bracket_comment", + "type": "body", "named": true }, { @@ -389,34 +359,6 @@ { "type": "foreach_command", "named": true - }, - { - "type": "foreach_loop", - "named": true - }, - { - "type": "function_def", - "named": true - }, - { - "type": "if_condition", - "named": true - }, - { - "type": "line_comment", - "named": true - }, - { - "type": "macro_def", - "named": true - }, - { - "type": "normal_command", - "named": true - }, - { - "type": "while_loop", - "named": true } ] } @@ -430,20 +372,12 @@ "required": true, "types": [ { - "type": "argument", - "named": true - }, - { - "type": "bracket_comment", + "type": "argument_list", "named": true }, { "type": "function", "named": true - }, - { - "type": "line_comment", - "named": true } ] } @@ -457,48 +391,16 @@ "required": true, "types": [ { - "type": "block_def", - "named": true - }, - { - "type": "bracket_comment", + "type": "body", "named": true }, { "type": "endfunction_command", "named": true }, - { - "type": "foreach_loop", - "named": true - }, { "type": "function_command", "named": true - }, - { - "type": "function_def", - "named": true - }, - { - "type": "if_condition", - "named": true - }, - { - "type": "line_comment", - "named": true - }, - { - "type": "macro_def", - "named": true - }, - { - "type": "normal_command", - "named": true - }, - { - "type": "while_loop", - "named": true } ] } @@ -527,20 +429,12 @@ "required": true, "types": [ { - "type": "argument", - "named": true - }, - { - "type": "bracket_comment", + "type": "argument_list", "named": true }, { "type": "if", "named": true - }, - { - "type": "line_comment", - "named": true } ] } @@ -554,11 +448,7 @@ "required": true, "types": [ { - "type": "block_def", - "named": true - }, - { - "type": "bracket_comment", + "type": "body", "named": true }, { @@ -573,37 +463,9 @@ "type": "endif_command", "named": true }, - { - "type": "foreach_loop", - "named": true - }, - { - "type": "function_def", - "named": true - }, { "type": "if_command", "named": true - }, - { - "type": "if_condition", - "named": true - }, - { - "type": "line_comment", - "named": true - }, - { - "type": "macro_def", - "named": true - }, - { - "type": "normal_command", - "named": true - }, - { - "type": "while_loop", - "named": true } ] } @@ -617,15 +479,7 @@ "required": true, "types": [ { - "type": "argument", - "named": true - }, - { - "type": "bracket_comment", - "named": true - }, - { - "type": "line_comment", + "type": "argument_list", "named": true }, { @@ -644,48 +498,16 @@ "required": true, "types": [ { - "type": "block_def", - "named": true - }, - { - "type": "bracket_comment", + "type": "body", "named": true }, { "type": "endmacro_command", "named": true }, - { - "type": "foreach_loop", - "named": true - }, - { - "type": "function_def", - "named": true - }, - { - "type": "if_condition", - "named": true - }, - { - "type": "line_comment", - "named": true - }, { "type": "macro_command", "named": true - }, - { - "type": "macro_def", - "named": true - }, - { - "type": "normal_command", - "named": true - }, - { - "type": "while_loop", - "named": true } ] } @@ -699,20 +521,12 @@ "required": true, "types": [ { - "type": "argument", - "named": true - }, - { - "type": "bracket_comment", + "type": "argument_list", "named": true }, { "type": "identifier", "named": true - }, - { - "type": "line_comment", - "named": true } ] } @@ -891,15 +705,7 @@ "required": true, "types": [ { - "type": "argument", - "named": true - }, - { - "type": "bracket_comment", - "named": true - }, - { - "type": "line_comment", + "type": "argument_list", "named": true }, { @@ -918,48 +724,16 @@ "required": true, "types": [ { - "type": "block_def", - "named": true - }, - { - "type": "bracket_comment", + "type": "body", "named": true }, { "type": "endwhile_command", "named": true }, - { - "type": "foreach_loop", - "named": true - }, - { - "type": "function_def", - "named": true - }, - { - "type": "if_condition", - "named": true - }, - { - "type": "line_comment", - "named": true - }, - { - "type": "macro_def", - "named": true - }, - { - "type": "normal_command", - "named": true - }, { "type": "while_command", "named": true - }, - { - "type": "while_loop", - "named": true } ] } diff --git a/vendored_parsers/tree-sitter-cmake/src/parser.c b/vendored_parsers/tree-sitter-cmake/src/parser.c index 47aef481c..64552f548 100644 --- a/vendored_parsers/tree-sitter-cmake/src/parser.c +++ b/vendored_parsers/tree-sitter-cmake/src/parser.c @@ -1,14 +1,13 @@ -#include +#include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 902 +#define STATE_COUNT 868 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 96 +#define SYMBOL_COUNT 98 #define ALIAS_COUNT 0 #define TOKEN_COUNT 43 #define EXTERNAL_TOKEN_COUNT 3 @@ -16,7 +15,7 @@ #define MAX_ALIAS_SEQUENCE_LENGTH 7 #define PRODUCTION_ID_COUNT 1 -enum { +enum ts_symbol_identifiers { sym__escape_identity = 1, anon_sym_BSLASHt = 2, anon_sym_BSLASHr = 3, @@ -79,39 +78,41 @@ enum { sym__quoted_text = 60, sym_unquoted_argument = 61, sym__unquoted_text = 62, - sym_if_command = 63, - sym_elseif_command = 64, - sym_else_command = 65, - sym_endif_command = 66, - sym_if_condition = 67, - sym_foreach_command = 68, - sym_endforeach_command = 69, - sym_foreach_loop = 70, - sym_while_command = 71, - sym_endwhile_command = 72, - sym_while_loop = 73, - sym_function_command = 74, - sym_endfunction_command = 75, - sym_function_def = 76, - sym_macro_command = 77, - sym_endmacro_command = 78, - sym_macro_def = 79, - sym_block_command = 80, - sym_endblock_command = 81, - sym_block_def = 82, - sym_normal_command = 83, - sym__command_invocation = 84, - sym__untrimmed_command_invocation = 85, - aux_sym_source_file_repeat1 = 86, - aux_sym_variable_repeat1 = 87, - aux_sym__gen_exp_arguments_repeat1 = 88, - aux_sym__paren_argument_repeat1 = 89, - aux_sym_quoted_element_repeat1 = 90, - aux_sym__quoted_text_repeat1 = 91, - aux_sym_unquoted_argument_repeat1 = 92, - aux_sym__unquoted_text_repeat1 = 93, - aux_sym_if_command_repeat1 = 94, - aux_sym_if_condition_repeat1 = 95, + sym_body = 63, + sym_argument_list = 64, + sym_if_command = 65, + sym_elseif_command = 66, + sym_else_command = 67, + sym_endif_command = 68, + sym_if_condition = 69, + sym_foreach_command = 70, + sym_endforeach_command = 71, + sym_foreach_loop = 72, + sym_while_command = 73, + sym_endwhile_command = 74, + sym_while_loop = 75, + sym_function_command = 76, + sym_endfunction_command = 77, + sym_function_def = 78, + sym_macro_command = 79, + sym_endmacro_command = 80, + sym_macro_def = 81, + sym_block_command = 82, + sym_endblock_command = 83, + sym_block_def = 84, + sym_normal_command = 85, + sym__command_invocation = 86, + sym__untrimmed_command_invocation = 87, + aux_sym_source_file_repeat1 = 88, + aux_sym_variable_repeat1 = 89, + aux_sym__gen_exp_arguments_repeat1 = 90, + aux_sym__paren_argument_repeat1 = 91, + aux_sym_quoted_element_repeat1 = 92, + aux_sym__quoted_text_repeat1 = 93, + aux_sym_unquoted_argument_repeat1 = 94, + aux_sym__unquoted_text_repeat1 = 95, + aux_sym_if_command_repeat1 = 96, + aux_sym_if_condition_repeat1 = 97, }; static const char * const ts_symbol_names[] = { @@ -178,6 +179,8 @@ static const char * const ts_symbol_names[] = { [sym__quoted_text] = "_quoted_text", [sym_unquoted_argument] = "unquoted_argument", [sym__unquoted_text] = "_unquoted_text", + [sym_body] = "body", + [sym_argument_list] = "argument_list", [sym_if_command] = "if_command", [sym_elseif_command] = "elseif_command", [sym_else_command] = "else_command", @@ -277,6 +280,8 @@ static const TSSymbol ts_symbol_map[] = { [sym__quoted_text] = sym__quoted_text, [sym_unquoted_argument] = sym_unquoted_argument, [sym__unquoted_text] = sym__unquoted_text, + [sym_body] = sym_body, + [sym_argument_list] = sym_argument_list, [sym_if_command] = sym_if_command, [sym_elseif_command] = sym_elseif_command, [sym_else_command] = sym_else_command, @@ -565,6 +570,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_body] = { + .visible = true, + .named = true, + }, + [sym_argument_list] = { + .visible = true, + .named = true, + }, [sym_if_command] = { .visible = true, .named = true, @@ -711,905 +724,871 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 3, + [3] = 2, [4] = 4, - [5] = 5, - [6] = 6, - [7] = 7, - [8] = 3, - [9] = 9, - [10] = 10, - [11] = 11, - [12] = 12, - [13] = 13, - [14] = 2, - [15] = 15, + [5] = 4, + [6] = 2, + [7] = 4, + [8] = 2, + [9] = 4, + [10] = 2, + [11] = 2, + [12] = 4, + [13] = 2, + [14] = 4, + [15] = 4, [16] = 16, [17] = 17, [18] = 18, [19] = 19, - [20] = 5, + [20] = 20, [21] = 21, - [22] = 22, + [22] = 16, [23] = 23, - [24] = 10, - [25] = 25, + [24] = 18, + [25] = 17, [26] = 26, - [27] = 27, - [28] = 28, - [29] = 29, - [30] = 26, - [31] = 31, - [32] = 32, - [33] = 33, - [34] = 10, - [35] = 35, - [36] = 29, - [37] = 35, - [38] = 33, - [39] = 32, - [40] = 31, - [41] = 28, - [42] = 35, - [43] = 29, - [44] = 28, - [45] = 26, - [46] = 5, - [47] = 29, + [27] = 19, + [28] = 20, + [29] = 21, + [30] = 16, + [31] = 17, + [32] = 18, + [33] = 20, + [34] = 26, + [35] = 17, + [36] = 23, + [37] = 37, + [38] = 38, + [39] = 38, + [40] = 16, + [41] = 26, + [42] = 23, + [43] = 23, + [44] = 38, + [45] = 38, + [46] = 37, + [47] = 21, [48] = 18, - [49] = 16, - [50] = 15, - [51] = 31, - [52] = 35, - [53] = 10, - [54] = 32, - [55] = 55, - [56] = 18, - [57] = 4, - [58] = 16, - [59] = 59, - [60] = 7, - [61] = 61, - [62] = 15, - [63] = 22, - [64] = 64, - [65] = 65, - [66] = 2, - [67] = 67, - [68] = 68, - [69] = 13, - [70] = 70, - [71] = 71, - [72] = 12, - [73] = 73, + [49] = 19, + [50] = 18, + [51] = 37, + [52] = 18, + [53] = 16, + [54] = 19, + [55] = 20, + [56] = 21, + [57] = 17, + [58] = 37, + [59] = 20, + [60] = 19, + [61] = 37, + [62] = 21, + [63] = 63, + [64] = 26, + [65] = 38, + [66] = 19, + [67] = 23, + [68] = 23, + [69] = 69, + [70] = 38, + [71] = 21, + [72] = 37, + [73] = 17, [74] = 74, - [75] = 9, - [76] = 76, - [77] = 77, - [78] = 4, - [79] = 33, - [80] = 32, - [81] = 81, - [82] = 7, - [83] = 83, - [84] = 3, - [85] = 31, - [86] = 11, - [87] = 6, - [88] = 6, - [89] = 11, - [90] = 12, - [91] = 7, - [92] = 4, - [93] = 12, - [94] = 3, - [95] = 28, - [96] = 22, - [97] = 6, - [98] = 26, - [99] = 2, - [100] = 15, - [101] = 5, - [102] = 13, - [103] = 16, - [104] = 18, - [105] = 9, - [106] = 3, - [107] = 33, - [108] = 11, + [75] = 20, + [76] = 16, + [77] = 26, + [78] = 16, + [79] = 20, + [80] = 17, + [81] = 21, + [82] = 26, + [83] = 23, + [84] = 18, + [85] = 19, + [86] = 26, + [87] = 37, + [88] = 38, + [89] = 89, + [90] = 90, + [91] = 91, + [92] = 92, + [93] = 93, + [94] = 94, + [95] = 95, + [96] = 96, + [97] = 97, + [98] = 98, + [99] = 99, + [100] = 100, + [101] = 101, + [102] = 102, + [103] = 103, + [104] = 104, + [105] = 105, + [106] = 106, + [107] = 107, + [108] = 108, [109] = 109, - [110] = 9, - [111] = 5, - [112] = 11, - [113] = 26, - [114] = 28, - [115] = 115, - [116] = 13, - [117] = 3, + [110] = 109, + [111] = 111, + [112] = 112, + [113] = 113, + [114] = 113, + [115] = 112, + [116] = 111, + [117] = 109, [118] = 118, - [119] = 22, - [120] = 120, - [121] = 31, - [122] = 122, - [123] = 32, - [124] = 124, - [125] = 33, - [126] = 126, - [127] = 35, - [128] = 128, - [129] = 10, - [130] = 18, - [131] = 33, - [132] = 132, - [133] = 133, - [134] = 29, - [135] = 135, - [136] = 136, - [137] = 35, - [138] = 16, - [139] = 15, - [140] = 32, - [141] = 6, - [142] = 33, - [143] = 35, - [144] = 32, - [145] = 12, - [146] = 29, - [147] = 4, - [148] = 7, - [149] = 31, - [150] = 12, - [151] = 6, - [152] = 29, - [153] = 11, - [154] = 28, - [155] = 7, - [156] = 4, - [157] = 26, - [158] = 7, - [159] = 31, - [160] = 26, - [161] = 5, - [162] = 15, - [163] = 9, - [164] = 13, - [165] = 2, - [166] = 22, - [167] = 22, - [168] = 2, - [169] = 13, - [170] = 10, - [171] = 9, - [172] = 18, - [173] = 28, - [174] = 3, - [175] = 175, - [176] = 11, - [177] = 177, - [178] = 6, - [179] = 9, - [180] = 12, - [181] = 16, - [182] = 18, - [183] = 16, - [184] = 10, - [185] = 4, - [186] = 13, - [187] = 5, - [188] = 2, - [189] = 15, - [190] = 22, - [191] = 191, - [192] = 192, - [193] = 193, - [194] = 192, - [195] = 195, - [196] = 195, - [197] = 195, - [198] = 192, - [199] = 199, - [200] = 200, - [201] = 201, - [202] = 199, - [203] = 203, - [204] = 200, - [205] = 192, - [206] = 201, - [207] = 192, - [208] = 199, - [209] = 195, + [119] = 112, + [120] = 107, + [121] = 111, + [122] = 118, + [123] = 107, + [124] = 112, + [125] = 111, + [126] = 118, + [127] = 107, + [128] = 118, + [129] = 108, + [130] = 108, + [131] = 109, + [132] = 109, + [133] = 107, + [134] = 107, + [135] = 111, + [136] = 107, + [137] = 118, + [138] = 113, + [139] = 113, + [140] = 112, + [141] = 111, + [142] = 109, + [143] = 118, + [144] = 112, + [145] = 113, + [146] = 112, + [147] = 113, + [148] = 108, + [149] = 113, + [150] = 150, + [151] = 118, + [152] = 109, + [153] = 108, + [154] = 111, + [155] = 108, + [156] = 156, + [157] = 157, + [158] = 156, + [159] = 156, + [160] = 156, + [161] = 156, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 165, + [166] = 156, + [167] = 167, + [168] = 167, + [169] = 169, + [170] = 167, + [171] = 169, + [172] = 167, + [173] = 167, + [174] = 169, + [175] = 169, + [176] = 169, + [177] = 169, + [178] = 167, + [179] = 167, + [180] = 169, + [181] = 181, + [182] = 182, + [183] = 181, + [184] = 182, + [185] = 181, + [186] = 182, + [187] = 181, + [188] = 182, + [189] = 182, + [190] = 181, + [191] = 181, + [192] = 182, + [193] = 181, + [194] = 182, + [195] = 163, + [196] = 165, + [197] = 197, + [198] = 197, + [199] = 197, + [200] = 165, + [201] = 197, + [202] = 163, + [203] = 163, + [204] = 163, + [205] = 205, + [206] = 165, + [207] = 165, + [208] = 208, + [209] = 209, [210] = 210, - [211] = 201, + [211] = 211, [212] = 210, - [213] = 199, - [214] = 214, - [215] = 203, - [216] = 214, - [217] = 193, + [213] = 210, + [214] = 211, + [215] = 215, + [216] = 215, + [217] = 210, [218] = 218, - [219] = 210, - [220] = 218, - [221] = 201, - [222] = 200, - [223] = 214, + [219] = 219, + [220] = 215, + [221] = 211, + [222] = 211, + [223] = 211, [224] = 210, - [225] = 199, - [226] = 203, - [227] = 201, - [228] = 200, - [229] = 195, - [230] = 192, - [231] = 200, - [232] = 218, - [233] = 210, - [234] = 218, - [235] = 214, - [236] = 193, - [237] = 193, - [238] = 214, - [239] = 203, - [240] = 214, - [241] = 195, - [242] = 203, - [243] = 210, - [244] = 200, - [245] = 193, - [246] = 218, - [247] = 201, - [248] = 218, - [249] = 210, - [250] = 218, - [251] = 193, - [252] = 199, - [253] = 193, - [254] = 203, - [255] = 192, - [256] = 201, - [257] = 203, - [258] = 195, - [259] = 200, - [260] = 199, - [261] = 214, + [225] = 215, + [226] = 210, + [227] = 215, + [228] = 215, + [229] = 211, + [230] = 215, + [231] = 210, + [232] = 211, + [233] = 233, + [234] = 209, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 239, + [240] = 240, + [241] = 241, + [242] = 242, + [243] = 243, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 209, + [248] = 248, + [249] = 249, + [250] = 250, + [251] = 251, + [252] = 252, + [253] = 253, + [254] = 254, + [255] = 255, + [256] = 209, + [257] = 257, + [258] = 258, + [259] = 259, + [260] = 260, + [261] = 261, [262] = 262, - [263] = 262, - [264] = 262, - [265] = 262, + [263] = 263, + [264] = 264, + [265] = 265, [266] = 266, - [267] = 262, - [268] = 262, + [267] = 267, + [268] = 268, [269] = 269, [270] = 270, - [271] = 270, + [271] = 271, [272] = 272, [273] = 273, - [274] = 270, - [275] = 270, - [276] = 270, - [277] = 270, + [274] = 274, + [275] = 275, + [276] = 276, + [277] = 277, [278] = 278, [279] = 279, [280] = 280, [281] = 281, - [282] = 280, - [283] = 281, - [284] = 280, - [285] = 281, - [286] = 281, - [287] = 281, - [288] = 281, - [289] = 281, - [290] = 280, - [291] = 280, - [292] = 280, - [293] = 280, - [294] = 294, - [295] = 295, - [296] = 295, - [297] = 294, - [298] = 294, - [299] = 295, - [300] = 295, - [301] = 295, - [302] = 294, - [303] = 295, - [304] = 295, - [305] = 294, - [306] = 294, - [307] = 294, - [308] = 279, - [309] = 273, - [310] = 310, - [311] = 279, - [312] = 310, - [313] = 310, - [314] = 310, - [315] = 273, - [316] = 273, - [317] = 317, - [318] = 318, - [319] = 279, - [320] = 273, - [321] = 279, - [322] = 322, - [323] = 323, - [324] = 323, - [325] = 325, - [326] = 326, - [327] = 325, - [328] = 323, - [329] = 325, - [330] = 323, - [331] = 325, - [332] = 326, - [333] = 325, - [334] = 326, - [335] = 326, - [336] = 325, - [337] = 337, - [338] = 323, - [339] = 323, - [340] = 340, - [341] = 325, - [342] = 323, - [343] = 326, - [344] = 326, - [345] = 326, - [346] = 346, - [347] = 322, - [348] = 348, - [349] = 349, - [350] = 350, - [351] = 351, - [352] = 352, - [353] = 353, - [354] = 354, - [355] = 355, - [356] = 356, - [357] = 357, - [358] = 358, - [359] = 359, - [360] = 322, - [361] = 361, - [362] = 362, - [363] = 363, - [364] = 364, - [365] = 365, - [366] = 366, - [367] = 367, - [368] = 368, - [369] = 369, - [370] = 370, - [371] = 371, - [372] = 372, - [373] = 373, - [374] = 322, - [375] = 375, - [376] = 376, - [377] = 377, - [378] = 378, - [379] = 322, - [380] = 380, - [381] = 381, - [382] = 382, - [383] = 346, - [384] = 384, - [385] = 385, - [386] = 386, - [387] = 387, - [388] = 388, - [389] = 389, - [390] = 390, - [391] = 391, - [392] = 392, - [393] = 393, - [394] = 394, - [395] = 395, - [396] = 396, - [397] = 397, - [398] = 398, - [399] = 399, - [400] = 400, - [401] = 401, - [402] = 402, - [403] = 403, - [404] = 404, - [405] = 405, - [406] = 406, - [407] = 407, - [408] = 354, - [409] = 353, - [410] = 348, - [411] = 411, - [412] = 358, - [413] = 351, - [414] = 350, - [415] = 352, - [416] = 355, - [417] = 359, - [418] = 356, - [419] = 406, - [420] = 395, - [421] = 382, - [422] = 384, - [423] = 385, - [424] = 386, - [425] = 387, - [426] = 388, - [427] = 390, - [428] = 362, - [429] = 392, - [430] = 393, - [431] = 394, - [432] = 395, - [433] = 396, - [434] = 397, - [435] = 398, - [436] = 399, - [437] = 364, - [438] = 401, - [439] = 402, - [440] = 403, - [441] = 399, - [442] = 404, - [443] = 405, - [444] = 406, - [445] = 407, - [446] = 400, - [447] = 398, - [448] = 397, - [449] = 389, - [450] = 380, - [451] = 372, - [452] = 373, - [453] = 375, - [454] = 376, - [455] = 377, - [456] = 378, - [457] = 405, - [458] = 364, - [459] = 381, - [460] = 382, - [461] = 384, - [462] = 385, - [463] = 386, - [464] = 387, - [465] = 388, - [466] = 390, - [467] = 362, - [468] = 392, - [469] = 393, - [470] = 394, - [471] = 395, - [472] = 396, - [473] = 397, - [474] = 398, - [475] = 399, - [476] = 364, - [477] = 401, - [478] = 402, - [479] = 403, - [480] = 401, - [481] = 404, - [482] = 405, - [483] = 403, - [484] = 407, - [485] = 400, - [486] = 402, - [487] = 378, - [488] = 389, - [489] = 380, - [490] = 396, - [491] = 395, - [492] = 394, - [493] = 393, - [494] = 392, - [495] = 362, - [496] = 390, - [497] = 346, - [498] = 388, - [499] = 377, - [500] = 386, - [501] = 385, - [502] = 384, - [503] = 382, - [504] = 381, - [505] = 376, - [506] = 378, - [507] = 377, - [508] = 376, - [509] = 375, - [510] = 373, - [511] = 372, - [512] = 375, - [513] = 373, - [514] = 372, - [515] = 380, - [516] = 389, - [517] = 405, - [518] = 406, - [519] = 400, - [520] = 407, - [521] = 406, - [522] = 404, - [523] = 404, - [524] = 387, - [525] = 407, - [526] = 403, - [527] = 402, - [528] = 401, - [529] = 364, - [530] = 399, - [531] = 398, - [532] = 397, - [533] = 400, - [534] = 396, - [535] = 381, - [536] = 394, - [537] = 393, - [538] = 392, - [539] = 362, - [540] = 390, - [541] = 388, - [542] = 387, - [543] = 386, - [544] = 385, - [545] = 384, - [546] = 382, - [547] = 381, - [548] = 389, - [549] = 372, - [550] = 380, - [551] = 551, - [552] = 389, - [553] = 378, - [554] = 377, - [555] = 376, - [556] = 400, - [557] = 407, - [558] = 406, - [559] = 405, - [560] = 404, - [561] = 375, - [562] = 373, - [563] = 372, - [564] = 380, - [565] = 389, - [566] = 403, - [567] = 402, - [568] = 401, - [569] = 364, - [570] = 399, - [571] = 398, - [572] = 400, - [573] = 407, - [574] = 397, - [575] = 575, - [576] = 576, - [577] = 577, - [578] = 578, - [579] = 579, - [580] = 406, - [581] = 380, - [582] = 405, - [583] = 404, - [584] = 373, - [585] = 403, - [586] = 402, - [587] = 401, - [588] = 364, - [589] = 396, - [590] = 395, - [591] = 394, - [592] = 393, - [593] = 392, - [594] = 362, - [595] = 399, - [596] = 398, - [597] = 390, - [598] = 598, - [599] = 599, - [600] = 600, - [601] = 601, + [282] = 282, + [283] = 233, + [284] = 284, + [285] = 209, + [286] = 286, + [287] = 287, + [288] = 242, + [289] = 235, + [290] = 239, + [291] = 241, + [292] = 246, + [293] = 245, + [294] = 236, + [295] = 244, + [296] = 237, + [297] = 240, + [298] = 298, + [299] = 272, + [300] = 261, + [301] = 261, + [302] = 260, + [303] = 259, + [304] = 255, + [305] = 233, + [306] = 258, + [307] = 273, + [308] = 250, + [309] = 251, + [310] = 252, + [311] = 253, + [312] = 267, + [313] = 253, + [314] = 314, + [315] = 255, + [316] = 276, + [317] = 279, + [318] = 280, + [319] = 282, + [320] = 287, + [321] = 286, + [322] = 252, + [323] = 278, + [324] = 274, + [325] = 250, + [326] = 272, + [327] = 271, + [328] = 270, + [329] = 269, + [330] = 268, + [331] = 248, + [332] = 266, + [333] = 273, + [334] = 267, + [335] = 264, + [336] = 263, + [337] = 262, + [338] = 261, + [339] = 260, + [340] = 259, + [341] = 276, + [342] = 279, + [343] = 258, + [344] = 273, + [345] = 250, + [346] = 251, + [347] = 252, + [348] = 253, + [349] = 267, + [350] = 258, + [351] = 259, + [352] = 255, + [353] = 276, + [354] = 279, + [355] = 280, + [356] = 282, + [357] = 287, + [358] = 286, + [359] = 278, + [360] = 274, + [361] = 267, + [362] = 272, + [363] = 271, + [364] = 270, + [365] = 269, + [366] = 268, + [367] = 248, + [368] = 266, + [369] = 260, + [370] = 261, + [371] = 264, + [372] = 263, + [373] = 262, + [374] = 261, + [375] = 260, + [376] = 259, + [377] = 262, + [378] = 280, + [379] = 258, + [380] = 273, + [381] = 250, + [382] = 251, + [383] = 252, + [384] = 253, + [385] = 267, + [386] = 282, + [387] = 287, + [388] = 255, + [389] = 276, + [390] = 279, + [391] = 280, + [392] = 282, + [393] = 287, + [394] = 286, + [395] = 278, + [396] = 274, + [397] = 279, + [398] = 272, + [399] = 271, + [400] = 270, + [401] = 269, + [402] = 268, + [403] = 248, + [404] = 266, + [405] = 263, + [406] = 263, + [407] = 264, + [408] = 263, + [409] = 262, + [410] = 251, + [411] = 260, + [412] = 259, + [413] = 262, + [414] = 264, + [415] = 258, + [416] = 273, + [417] = 250, + [418] = 251, + [419] = 252, + [420] = 253, + [421] = 267, + [422] = 264, + [423] = 269, + [424] = 266, + [425] = 255, + [426] = 276, + [427] = 279, + [428] = 280, + [429] = 282, + [430] = 287, + [431] = 286, + [432] = 278, + [433] = 274, + [434] = 266, + [435] = 271, + [436] = 270, + [437] = 269, + [438] = 268, + [439] = 248, + [440] = 266, + [441] = 248, + [442] = 264, + [443] = 263, + [444] = 262, + [445] = 261, + [446] = 260, + [447] = 259, + [448] = 268, + [449] = 269, + [450] = 258, + [451] = 273, + [452] = 250, + [453] = 251, + [454] = 252, + [455] = 253, + [456] = 270, + [457] = 271, + [458] = 272, + [459] = 276, + [460] = 248, + [461] = 255, + [462] = 272, + [463] = 286, + [464] = 274, + [465] = 271, + [466] = 280, + [467] = 274, + [468] = 278, + [469] = 268, + [470] = 270, + [471] = 282, + [472] = 287, + [473] = 278, + [474] = 286, + [475] = 475, + [476] = 233, + [477] = 477, + [478] = 478, + [479] = 479, + [480] = 480, + [481] = 481, + [482] = 242, + [483] = 483, + [484] = 484, + [485] = 485, + [486] = 486, + [487] = 487, + [488] = 241, + [489] = 235, + [490] = 246, + [491] = 233, + [492] = 245, + [493] = 236, + [494] = 237, + [495] = 235, + [496] = 237, + [497] = 236, + [498] = 246, + [499] = 241, + [500] = 245, + [501] = 242, + [502] = 246, + [503] = 241, + [504] = 245, + [505] = 241, + [506] = 235, + [507] = 246, + [508] = 237, + [509] = 236, + [510] = 235, + [511] = 242, + [512] = 245, + [513] = 236, + [514] = 245, + [515] = 246, + [516] = 237, + [517] = 242, + [518] = 237, + [519] = 236, + [520] = 241, + [521] = 521, + [522] = 522, + [523] = 523, + [524] = 239, + [525] = 525, + [526] = 244, + [527] = 527, + [528] = 528, + [529] = 529, + [530] = 530, + [531] = 531, + [532] = 532, + [533] = 533, + [534] = 240, + [535] = 535, + [536] = 536, + [537] = 537, + [538] = 538, + [539] = 539, + [540] = 522, + [541] = 523, + [542] = 525, + [543] = 527, + [544] = 528, + [545] = 529, + [546] = 530, + [547] = 531, + [548] = 548, + [549] = 549, + [550] = 550, + [551] = 539, + [552] = 529, + [553] = 538, + [554] = 533, + [555] = 528, + [556] = 537, + [557] = 536, + [558] = 535, + [559] = 536, + [560] = 535, + [561] = 537, + [562] = 538, + [563] = 539, + [564] = 527, + [565] = 522, + [566] = 533, + [567] = 523, + [568] = 525, + [569] = 527, + [570] = 528, + [571] = 530, + [572] = 529, + [573] = 573, + [574] = 530, + [575] = 531, + [576] = 531, + [577] = 525, + [578] = 530, + [579] = 523, + [580] = 529, + [581] = 533, + [582] = 522, + [583] = 583, + [584] = 528, + [585] = 527, + [586] = 535, + [587] = 536, + [588] = 537, + [589] = 538, + [590] = 539, + [591] = 525, + [592] = 522, + [593] = 523, + [594] = 525, + [595] = 527, + [596] = 528, + [597] = 529, + [598] = 530, + [599] = 523, + [600] = 531, + [601] = 522, [602] = 602, - [603] = 397, - [604] = 372, - [605] = 396, - [606] = 395, - [607] = 394, - [608] = 393, - [609] = 392, - [610] = 388, - [611] = 387, - [612] = 386, - [613] = 385, - [614] = 362, - [615] = 390, - [616] = 384, - [617] = 375, - [618] = 382, - [619] = 388, - [620] = 387, - [621] = 386, - [622] = 381, - [623] = 623, - [624] = 624, - [625] = 625, - [626] = 626, + [603] = 533, + [604] = 539, + [605] = 535, + [606] = 536, + [607] = 537, + [608] = 538, + [609] = 538, + [610] = 539, + [611] = 529, + [612] = 528, + [613] = 613, + [614] = 527, + [615] = 525, + [616] = 537, + [617] = 533, + [618] = 523, + [619] = 536, + [620] = 536, + [621] = 621, + [622] = 537, + [623] = 535, + [624] = 531, + [625] = 522, + [626] = 538, [627] = 627, - [628] = 385, - [629] = 384, - [630] = 382, - [631] = 381, - [632] = 378, - [633] = 377, - [634] = 378, - [635] = 376, - [636] = 377, - [637] = 375, - [638] = 376, - [639] = 373, - [640] = 346, - [641] = 356, - [642] = 354, + [628] = 628, + [629] = 539, + [630] = 630, + [631] = 631, + [632] = 632, + [633] = 531, + [634] = 530, + [635] = 533, + [636] = 636, + [637] = 637, + [638] = 535, + [639] = 639, + [640] = 640, + [641] = 641, + [642] = 642, [643] = 643, - [644] = 359, - [645] = 355, - [646] = 346, - [647] = 352, - [648] = 350, - [649] = 351, - [650] = 359, - [651] = 356, - [652] = 355, - [653] = 356, - [654] = 352, - [655] = 354, - [656] = 351, - [657] = 359, - [658] = 355, - [659] = 356, - [660] = 352, - [661] = 354, - [662] = 350, - [663] = 351, - [664] = 359, - [665] = 355, - [666] = 352, - [667] = 350, - [668] = 351, - [669] = 350, - [670] = 354, - [671] = 359, - [672] = 355, - [673] = 352, - [674] = 350, - [675] = 351, - [676] = 676, - [677] = 677, - [678] = 678, - [679] = 679, - [680] = 680, - [681] = 681, - [682] = 682, - [683] = 683, - [684] = 684, - [685] = 685, - [686] = 686, - [687] = 687, - [688] = 688, - [689] = 689, + [644] = 644, + [645] = 645, + [646] = 646, + [647] = 642, + [648] = 648, + [649] = 641, + [650] = 643, + [651] = 641, + [652] = 643, + [653] = 644, + [654] = 641, + [655] = 643, + [656] = 644, + [657] = 645, + [658] = 646, + [659] = 644, + [660] = 645, + [661] = 645, + [662] = 646, + [663] = 646, + [664] = 642, + [665] = 642, + [666] = 648, + [667] = 641, + [668] = 643, + [669] = 648, + [670] = 644, + [671] = 645, + [672] = 646, + [673] = 642, + [674] = 648, + [675] = 642, + [676] = 642, + [677] = 648, + [678] = 648, + [679] = 644, + [680] = 646, + [681] = 645, + [682] = 648, + [683] = 641, + [684] = 643, + [685] = 644, + [686] = 645, + [687] = 646, + [688] = 641, + [689] = 643, [690] = 690, [691] = 691, - [692] = 692, + [692] = 690, [693] = 693, - [694] = 676, + [694] = 694, [695] = 695, [696] = 696, [697] = 697, [698] = 698, - [699] = 677, + [699] = 699, [700] = 700, [701] = 701, - [702] = 702, - [703] = 703, - [704] = 690, - [705] = 683, + [702] = 701, + [703] = 698, + [704] = 704, + [705] = 705, [706] = 706, - [707] = 703, - [708] = 702, - [709] = 692, - [710] = 693, - [711] = 676, - [712] = 695, - [713] = 696, - [714] = 697, - [715] = 698, - [716] = 677, - [717] = 701, - [718] = 702, - [719] = 703, - [720] = 690, - [721] = 698, - [722] = 683, - [723] = 701, - [724] = 700, - [725] = 677, - [726] = 692, - [727] = 693, - [728] = 676, - [729] = 695, - [730] = 696, - [731] = 358, - [732] = 697, - [733] = 348, - [734] = 698, - [735] = 353, - [736] = 677, - [737] = 700, - [738] = 701, - [739] = 702, - [740] = 703, - [741] = 690, - [742] = 683, - [743] = 698, + [707] = 707, + [708] = 708, + [709] = 709, + [710] = 700, + [711] = 691, + [712] = 712, + [713] = 713, + [714] = 690, + [715] = 693, + [716] = 694, + [717] = 695, + [718] = 696, + [719] = 697, + [720] = 720, + [721] = 721, + [722] = 722, + [723] = 699, + [724] = 709, + [725] = 707, + [726] = 707, + [727] = 727, + [728] = 705, + [729] = 729, + [730] = 730, + [731] = 704, + [732] = 732, + [733] = 733, + [734] = 734, + [735] = 735, + [736] = 736, + [737] = 698, + [738] = 709, + [739] = 691, + [740] = 712, + [741] = 701, + [742] = 700, + [743] = 713, [744] = 744, [745] = 745, - [746] = 746, - [747] = 692, - [748] = 693, - [749] = 676, - [750] = 750, - [751] = 695, - [752] = 676, - [753] = 696, - [754] = 697, - [755] = 698, - [756] = 677, - [757] = 700, - [758] = 692, + [746] = 690, + [747] = 729, + [748] = 730, + [749] = 729, + [750] = 697, + [751] = 696, + [752] = 695, + [753] = 694, + [754] = 693, + [755] = 713, + [756] = 712, + [757] = 691, + [758] = 709, [759] = 693, - [760] = 701, - [761] = 702, - [762] = 703, - [763] = 690, - [764] = 683, - [765] = 690, - [766] = 703, - [767] = 702, - [768] = 701, - [769] = 700, - [770] = 677, - [771] = 698, - [772] = 697, - [773] = 696, - [774] = 695, - [775] = 683, - [776] = 693, - [777] = 692, - [778] = 778, - [779] = 695, - [780] = 780, - [781] = 697, - [782] = 696, - [783] = 683, - [784] = 690, - [785] = 703, - [786] = 702, - [787] = 701, - [788] = 696, - [789] = 700, - [790] = 692, - [791] = 697, - [792] = 700, - [793] = 695, - [794] = 676, - [795] = 693, - [796] = 796, + [760] = 707, + [761] = 691, + [762] = 705, + [763] = 704, + [764] = 733, + [765] = 698, + [766] = 694, + [767] = 695, + [768] = 712, + [769] = 696, + [770] = 729, + [771] = 730, + [772] = 701, + [773] = 700, + [774] = 735, + [775] = 730, + [776] = 699, + [777] = 699, + [778] = 733, + [779] = 713, + [780] = 709, + [781] = 707, + [782] = 705, + [783] = 697, + [784] = 697, + [785] = 696, + [786] = 695, + [787] = 694, + [788] = 693, + [789] = 690, + [790] = 713, + [791] = 712, + [792] = 792, + [793] = 793, + [794] = 729, + [795] = 730, + [796] = 691, [797] = 797, - [798] = 797, - [799] = 796, - [800] = 796, - [801] = 797, - [802] = 796, - [803] = 796, - [804] = 796, - [805] = 797, - [806] = 796, - [807] = 797, - [808] = 797, - [809] = 797, - [810] = 810, - [811] = 811, - [812] = 812, - [813] = 813, - [814] = 814, - [815] = 815, - [816] = 814, + [798] = 798, + [799] = 799, + [800] = 709, + [801] = 801, + [802] = 707, + [803] = 704, + [804] = 705, + [805] = 704, + [806] = 733, + [807] = 698, + [808] = 733, + [809] = 701, + [810] = 698, + [811] = 700, + [812] = 735, + [813] = 699, + [814] = 701, + [815] = 700, + [816] = 816, [817] = 817, - [818] = 818, - [819] = 812, - [820] = 820, - [821] = 820, - [822] = 811, - [823] = 823, - [824] = 810, - [825] = 825, - [826] = 826, - [827] = 811, - [828] = 828, - [829] = 828, - [830] = 826, - [831] = 810, - [832] = 818, - [833] = 818, - [834] = 823, - [835] = 353, - [836] = 812, - [837] = 348, - [838] = 820, - [839] = 811, - [840] = 817, - [841] = 828, - [842] = 826, - [843] = 810, - [844] = 823, - [845] = 823, - [846] = 814, - [847] = 815, - [848] = 358, - [849] = 826, - [850] = 815, - [851] = 817, - [852] = 814, - [853] = 814, - [854] = 817, + [818] = 729, + [819] = 730, + [820] = 699, + [821] = 704, + [822] = 705, + [823] = 697, + [824] = 696, + [825] = 240, + [826] = 697, + [827] = 696, + [828] = 695, + [829] = 694, + [830] = 693, + [831] = 690, + [832] = 713, + [833] = 712, + [834] = 691, + [835] = 709, + [836] = 707, + [837] = 695, + [838] = 705, + [839] = 704, + [840] = 733, + [841] = 698, + [842] = 729, + [843] = 730, + [844] = 744, + [845] = 736, + [846] = 694, + [847] = 244, + [848] = 744, + [849] = 736, + [850] = 701, + [851] = 700, + [852] = 744, + [853] = 736, + [854] = 735, [855] = 855, - [856] = 812, - [857] = 820, - [858] = 811, - [859] = 828, - [860] = 826, - [861] = 823, - [862] = 810, - [863] = 818, - [864] = 823, - [865] = 810, - [866] = 826, - [867] = 828, - [868] = 818, - [869] = 818, - [870] = 815, - [871] = 812, - [872] = 828, - [873] = 814, - [874] = 817, - [875] = 812, - [876] = 820, - [877] = 811, - [878] = 855, - [879] = 813, - [880] = 823, - [881] = 810, - [882] = 855, - [883] = 813, - [884] = 826, - [885] = 828, - [886] = 855, - [887] = 813, - [888] = 811, - [889] = 889, - [890] = 855, - [891] = 813, - [892] = 820, - [893] = 818, - [894] = 855, - [895] = 813, - [896] = 820, - [897] = 814, - [898] = 855, - [899] = 813, - [900] = 817, - [901] = 812, + [856] = 744, + [857] = 736, + [858] = 699, + [859] = 239, + [860] = 744, + [861] = 736, + [862] = 693, + [863] = 690, + [864] = 744, + [865] = 736, + [866] = 713, + [867] = 712, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1633,11 +1612,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(34); if (lookahead == '\t' || lookahead == ' ') ADVANCE(42); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(42); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(42); if (lookahead != 0 && - lookahead != '#' && - lookahead != '\'') ADVANCE(49); + lookahead != '#') ADVANCE(49); END_STATE(); case 1: if (lookahead == '"') ADVANCE(45); @@ -1650,13 +1627,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'E') ADVANCE(51); if (lookahead == '\\') ADVANCE(13); if (lookahead == '{') ADVANCE(34); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(42); if (lookahead != 0 && - lookahead != '#' && - lookahead != '\'') ADVANCE(49); + lookahead != '#') ADVANCE(49); END_STATE(); case 2: if (lookahead == '"') ADVANCE(45); @@ -1665,13 +1639,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(44); if (lookahead == ';') ADVANCE(30); if (lookahead == '\\') ADVANCE(13); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(42); if (lookahead != 0 && - lookahead != '#' && - lookahead != '\'') ADVANCE(49); + lookahead != '#') ADVANCE(49); END_STATE(); case 3: if (lookahead == '"') ADVANCE(45); @@ -1681,7 +1652,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(13); if (lookahead != 0 && lookahead != '#' && - lookahead != '\'' && lookahead != '(') ADVANCE(49); END_STATE(); case 4: @@ -1697,7 +1667,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(34); if (lookahead != 0 && lookahead != '#' && - (lookahead < '\'' || ')' < lookahead)) ADVANCE(49); + lookahead != '(' && + lookahead != ')') ADVANCE(49); END_STATE(); case 5: if (lookahead == '"') ADVANCE(45); @@ -1708,7 +1679,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(13); if (lookahead != 0 && lookahead != '#' && - (lookahead < '\'' || ')' < lookahead)) ADVANCE(49); + lookahead != '(' && + lookahead != ')') ADVANCE(49); END_STATE(); case 6: if (lookahead == '"') ADVANCE(45); @@ -1729,7 +1701,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(13); if (lookahead != 0 && lookahead != '#' && - (lookahead < '\'' || ')' < lookahead)) ADVANCE(49); + lookahead != '(' && + lookahead != ')') ADVANCE(49); END_STATE(); case 8: if (lookahead == '"') ADVANCE(45); @@ -1764,7 +1737,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\'' && lookahead != '(') ADVANCE(49); END_STATE(); case 11: @@ -1780,7 +1752,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - (lookahead < '\'' || ')' < lookahead)) ADVANCE(49); + lookahead != '(' && + lookahead != ')') ADVANCE(49); END_STATE(); case 12: if (lookahead == '$') ADVANCE(33); @@ -1791,7 +1764,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - (lookahead < '\'' || ')' < lookahead)) ADVANCE(49); + lookahead != '(' && + lookahead != ')') ADVANCE(49); END_STATE(); case 13: if (lookahead == ';') ADVANCE(31); @@ -1828,9 +1802,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'm') ADVANCE(72); if (lookahead == 'W' || lookahead == 'w') ADVANCE(101); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(42); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -1849,9 +1821,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'm') ADVANCE(72); if (lookahead == 'W' || lookahead == 'w') ADVANCE(101); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(42); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -1870,9 +1840,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'm') ADVANCE(72); if (lookahead == 'W' || lookahead == 'w') ADVANCE(101); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(42); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -1891,9 +1859,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'm') ADVANCE(72); if (lookahead == 'W' || lookahead == 'w') ADVANCE(101); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(42); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -1912,9 +1878,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'm') ADVANCE(72); if (lookahead == 'W' || lookahead == 'w') ADVANCE(101); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(42); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -1933,9 +1897,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'm') ADVANCE(72); if (lookahead == 'W' || lookahead == 'w') ADVANCE(101); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(42); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -1954,9 +1916,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'm') ADVANCE(72); if (lookahead == 'W' || lookahead == 'w') ADVANCE(101); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(42); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2049,9 +2009,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 52: ACCEPT_TOKEN(aux_sym__unquoted_text_token1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(57); END_STATE(); case 53: @@ -2066,42 +2024,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'E') ADVANCE(51); if (lookahead == '\\') ADVANCE(13); if (lookahead == '{') ADVANCE(34); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(52); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - (lookahead < '\'' || ')' < lookahead)) ADVANCE(49); + lookahead != '(' && + lookahead != ')') ADVANCE(49); END_STATE(); case 55: ACCEPT_TOKEN(aux_sym_endwhile_command_token1); if (lookahead == '$') ADVANCE(33); if (lookahead == ';') ADVANCE(30); if (lookahead == '\\') ADVANCE(13); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(52); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - (lookahead < '\'' || ')' < lookahead)) ADVANCE(49); + lookahead != '(' && + lookahead != ')') ADVANCE(49); END_STATE(); case 56: ACCEPT_TOKEN(aux_sym_endwhile_command_token1); if (lookahead == ')') ADVANCE(44); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(57); END_STATE(); case 57: ACCEPT_TOKEN(aux_sym_endwhile_command_token1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(57); END_STATE(); case 58: @@ -2360,7 +2312,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 89: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(100); + lookahead == 'd') ADVANCE(99); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2369,7 +2321,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 90: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(99); + lookahead == 'd') ADVANCE(100); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2531,7 +2483,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 108: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(132); + lookahead == 'i') ADVANCE(133); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2605,7 +2557,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 116: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(133); + lookahead == 'l') ADVANCE(132); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2641,7 +2593,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 120: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(89); + lookahead == 'n') ADVANCE(85); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2659,7 +2611,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 122: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(85); + lookahead == 'n') ADVANCE(86); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2668,7 +2620,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 123: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(86); + lookahead == 'n') ADVANCE(87); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2677,7 +2629,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 124: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(87); + lookahead == 'n') ADVANCE(89); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2751,7 +2703,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 132: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(119); + lookahead == 'o') ADVANCE(81); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2760,7 +2712,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 133: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(81); + lookahead == 'o') ADVANCE(119); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -2871,20 +2823,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 24, .external_lex_state = 2}, - [2] = {.lex_state = 2, .external_lex_state = 1}, - [3] = {.lex_state = 2, .external_lex_state = 1}, - [4] = {.lex_state = 2, .external_lex_state = 1}, - [5] = {.lex_state = 2, .external_lex_state = 1}, - [6] = {.lex_state = 2, .external_lex_state = 1}, - [7] = {.lex_state = 2, .external_lex_state = 1}, - [8] = {.lex_state = 2, .external_lex_state = 1}, - [9] = {.lex_state = 2, .external_lex_state = 1}, + [2] = {.lex_state = 18, .external_lex_state = 2}, + [3] = {.lex_state = 18, .external_lex_state = 2}, + [4] = {.lex_state = 18, .external_lex_state = 2}, + [5] = {.lex_state = 18, .external_lex_state = 2}, + [6] = {.lex_state = 18, .external_lex_state = 2}, + [7] = {.lex_state = 18, .external_lex_state = 2}, + [8] = {.lex_state = 18, .external_lex_state = 2}, + [9] = {.lex_state = 18, .external_lex_state = 2}, [10] = {.lex_state = 18, .external_lex_state = 2}, - [11] = {.lex_state = 2, .external_lex_state = 1}, - [12] = {.lex_state = 2, .external_lex_state = 1}, - [13] = {.lex_state = 2, .external_lex_state = 1}, - [14] = {.lex_state = 2, .external_lex_state = 1}, - [15] = {.lex_state = 2, .external_lex_state = 1}, + [11] = {.lex_state = 18, .external_lex_state = 2}, + [12] = {.lex_state = 18, .external_lex_state = 2}, + [13] = {.lex_state = 18, .external_lex_state = 2}, + [14] = {.lex_state = 18, .external_lex_state = 2}, + [15] = {.lex_state = 18, .external_lex_state = 2}, [16] = {.lex_state = 2, .external_lex_state = 1}, [17] = {.lex_state = 2, .external_lex_state = 1}, [18] = {.lex_state = 2, .external_lex_state = 1}, @@ -2893,7 +2845,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [21] = {.lex_state = 2, .external_lex_state = 1}, [22] = {.lex_state = 2, .external_lex_state = 1}, [23] = {.lex_state = 2, .external_lex_state = 1}, - [24] = {.lex_state = 18, .external_lex_state = 2}, + [24] = {.lex_state = 2, .external_lex_state = 1}, [25] = {.lex_state = 2, .external_lex_state = 1}, [26] = {.lex_state = 2, .external_lex_state = 1}, [27] = {.lex_state = 2, .external_lex_state = 1}, @@ -2903,15 +2855,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [31] = {.lex_state = 2, .external_lex_state = 1}, [32] = {.lex_state = 2, .external_lex_state = 1}, [33] = {.lex_state = 2, .external_lex_state = 1}, - [34] = {.lex_state = 18, .external_lex_state = 2}, - [35] = {.lex_state = 18, .external_lex_state = 2}, + [34] = {.lex_state = 2, .external_lex_state = 1}, + [35] = {.lex_state = 2, .external_lex_state = 1}, [36] = {.lex_state = 2, .external_lex_state = 1}, - [37] = {.lex_state = 18, .external_lex_state = 2}, + [37] = {.lex_state = 2, .external_lex_state = 1}, [38] = {.lex_state = 2, .external_lex_state = 1}, [39] = {.lex_state = 2, .external_lex_state = 1}, [40] = {.lex_state = 2, .external_lex_state = 1}, [41] = {.lex_state = 2, .external_lex_state = 1}, - [42] = {.lex_state = 18, .external_lex_state = 2}, + [42] = {.lex_state = 2, .external_lex_state = 1}, [43] = {.lex_state = 2, .external_lex_state = 1}, [44] = {.lex_state = 2, .external_lex_state = 1}, [45] = {.lex_state = 2, .external_lex_state = 1}, @@ -2921,8 +2873,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [49] = {.lex_state = 2, .external_lex_state = 1}, [50] = {.lex_state = 2, .external_lex_state = 1}, [51] = {.lex_state = 2, .external_lex_state = 1}, - [52] = {.lex_state = 18, .external_lex_state = 2}, - [53] = {.lex_state = 18, .external_lex_state = 2}, + [52] = {.lex_state = 2, .external_lex_state = 1}, + [53] = {.lex_state = 2, .external_lex_state = 1}, [54] = {.lex_state = 2, .external_lex_state = 1}, [55] = {.lex_state = 2, .external_lex_state = 1}, [56] = {.lex_state = 2, .external_lex_state = 1}, @@ -2943,7 +2895,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [71] = {.lex_state = 2, .external_lex_state = 1}, [72] = {.lex_state = 2, .external_lex_state = 1}, [73] = {.lex_state = 2, .external_lex_state = 1}, - [74] = {.lex_state = 2, .external_lex_state = 1}, + [74] = {.lex_state = 18, .external_lex_state = 2}, [75] = {.lex_state = 2, .external_lex_state = 1}, [76] = {.lex_state = 2, .external_lex_state = 1}, [77] = {.lex_state = 2, .external_lex_state = 1}, @@ -2976,828 +2928,767 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [104] = {.lex_state = 2, .external_lex_state = 1}, [105] = {.lex_state = 2, .external_lex_state = 1}, [106] = {.lex_state = 2, .external_lex_state = 1}, - [107] = {.lex_state = 2, .external_lex_state = 1}, - [108] = {.lex_state = 2, .external_lex_state = 1}, - [109] = {.lex_state = 2, .external_lex_state = 1}, - [110] = {.lex_state = 2, .external_lex_state = 1}, - [111] = {.lex_state = 2, .external_lex_state = 1}, - [112] = {.lex_state = 2, .external_lex_state = 1}, - [113] = {.lex_state = 2, .external_lex_state = 1}, - [114] = {.lex_state = 2, .external_lex_state = 1}, - [115] = {.lex_state = 2, .external_lex_state = 1}, - [116] = {.lex_state = 2, .external_lex_state = 1}, - [117] = {.lex_state = 2, .external_lex_state = 1}, - [118] = {.lex_state = 2, .external_lex_state = 1}, - [119] = {.lex_state = 2, .external_lex_state = 1}, - [120] = {.lex_state = 2, .external_lex_state = 1}, - [121] = {.lex_state = 2, .external_lex_state = 1}, - [122] = {.lex_state = 2, .external_lex_state = 1}, - [123] = {.lex_state = 2, .external_lex_state = 1}, - [124] = {.lex_state = 2, .external_lex_state = 1}, - [125] = {.lex_state = 2, .external_lex_state = 1}, - [126] = {.lex_state = 2, .external_lex_state = 1}, - [127] = {.lex_state = 18, .external_lex_state = 2}, - [128] = {.lex_state = 2, .external_lex_state = 1}, - [129] = {.lex_state = 18, .external_lex_state = 2}, - [130] = {.lex_state = 2, .external_lex_state = 1}, - [131] = {.lex_state = 2, .external_lex_state = 1}, - [132] = {.lex_state = 2, .external_lex_state = 1}, - [133] = {.lex_state = 2, .external_lex_state = 1}, - [134] = {.lex_state = 2, .external_lex_state = 1}, - [135] = {.lex_state = 2, .external_lex_state = 1}, - [136] = {.lex_state = 2, .external_lex_state = 1}, - [137] = {.lex_state = 18, .external_lex_state = 2}, - [138] = {.lex_state = 2, .external_lex_state = 1}, - [139] = {.lex_state = 2, .external_lex_state = 1}, - [140] = {.lex_state = 2, .external_lex_state = 1}, - [141] = {.lex_state = 2, .external_lex_state = 1}, - [142] = {.lex_state = 2, .external_lex_state = 1}, - [143] = {.lex_state = 18, .external_lex_state = 2}, - [144] = {.lex_state = 2, .external_lex_state = 1}, - [145] = {.lex_state = 2, .external_lex_state = 1}, - [146] = {.lex_state = 2, .external_lex_state = 1}, - [147] = {.lex_state = 2, .external_lex_state = 1}, - [148] = {.lex_state = 2, .external_lex_state = 1}, - [149] = {.lex_state = 2, .external_lex_state = 1}, - [150] = {.lex_state = 2, .external_lex_state = 1}, - [151] = {.lex_state = 2, .external_lex_state = 1}, - [152] = {.lex_state = 2, .external_lex_state = 1}, - [153] = {.lex_state = 2, .external_lex_state = 1}, - [154] = {.lex_state = 2, .external_lex_state = 1}, - [155] = {.lex_state = 2, .external_lex_state = 1}, - [156] = {.lex_state = 2, .external_lex_state = 1}, - [157] = {.lex_state = 2, .external_lex_state = 1}, - [158] = {.lex_state = 2, .external_lex_state = 1}, - [159] = {.lex_state = 2, .external_lex_state = 1}, - [160] = {.lex_state = 2, .external_lex_state = 1}, - [161] = {.lex_state = 2, .external_lex_state = 1}, - [162] = {.lex_state = 2, .external_lex_state = 1}, + [107] = {.lex_state = 18, .external_lex_state = 2}, + [108] = {.lex_state = 18, .external_lex_state = 2}, + [109] = {.lex_state = 24, .external_lex_state = 2}, + [110] = {.lex_state = 24, .external_lex_state = 2}, + [111] = {.lex_state = 24, .external_lex_state = 2}, + [112] = {.lex_state = 24, .external_lex_state = 2}, + [113] = {.lex_state = 24, .external_lex_state = 2}, + [114] = {.lex_state = 24, .external_lex_state = 2}, + [115] = {.lex_state = 24, .external_lex_state = 2}, + [116] = {.lex_state = 24, .external_lex_state = 2}, + [117] = {.lex_state = 24, .external_lex_state = 2}, + [118] = {.lex_state = 24, .external_lex_state = 2}, + [119] = {.lex_state = 24, .external_lex_state = 2}, + [120] = {.lex_state = 19, .external_lex_state = 2}, + [121] = {.lex_state = 24, .external_lex_state = 2}, + [122] = {.lex_state = 24, .external_lex_state = 2}, + [123] = {.lex_state = 20, .external_lex_state = 2}, + [124] = {.lex_state = 24, .external_lex_state = 2}, + [125] = {.lex_state = 24, .external_lex_state = 2}, + [126] = {.lex_state = 24, .external_lex_state = 2}, + [127] = {.lex_state = 21, .external_lex_state = 2}, + [128] = {.lex_state = 24, .external_lex_state = 2}, + [129] = {.lex_state = 19, .external_lex_state = 2}, + [130] = {.lex_state = 21, .external_lex_state = 2}, + [131] = {.lex_state = 24, .external_lex_state = 2}, + [132] = {.lex_state = 24, .external_lex_state = 2}, + [133] = {.lex_state = 22, .external_lex_state = 2}, + [134] = {.lex_state = 23, .external_lex_state = 2}, + [135] = {.lex_state = 24, .external_lex_state = 2}, + [136] = {.lex_state = 24, .external_lex_state = 2}, + [137] = {.lex_state = 24, .external_lex_state = 2}, + [138] = {.lex_state = 24, .external_lex_state = 2}, + [139] = {.lex_state = 24, .external_lex_state = 2}, + [140] = {.lex_state = 24, .external_lex_state = 2}, + [141] = {.lex_state = 24, .external_lex_state = 2}, + [142] = {.lex_state = 24, .external_lex_state = 2}, + [143] = {.lex_state = 24, .external_lex_state = 2}, + [144] = {.lex_state = 24, .external_lex_state = 2}, + [145] = {.lex_state = 24, .external_lex_state = 2}, + [146] = {.lex_state = 24, .external_lex_state = 2}, + [147] = {.lex_state = 24, .external_lex_state = 2}, + [148] = {.lex_state = 23, .external_lex_state = 2}, + [149] = {.lex_state = 24, .external_lex_state = 2}, + [150] = {.lex_state = 24, .external_lex_state = 2}, + [151] = {.lex_state = 24, .external_lex_state = 2}, + [152] = {.lex_state = 24, .external_lex_state = 2}, + [153] = {.lex_state = 20, .external_lex_state = 2}, + [154] = {.lex_state = 24, .external_lex_state = 2}, + [155] = {.lex_state = 22, .external_lex_state = 2}, + [156] = {.lex_state = 7, .external_lex_state = 3}, + [157] = {.lex_state = 7, .external_lex_state = 3}, + [158] = {.lex_state = 7, .external_lex_state = 3}, + [159] = {.lex_state = 7, .external_lex_state = 3}, + [160] = {.lex_state = 7, .external_lex_state = 3}, + [161] = {.lex_state = 7, .external_lex_state = 3}, + [162] = {.lex_state = 7, .external_lex_state = 3}, [163] = {.lex_state = 2, .external_lex_state = 1}, - [164] = {.lex_state = 2, .external_lex_state = 1}, + [164] = {.lex_state = 7, .external_lex_state = 3}, [165] = {.lex_state = 2, .external_lex_state = 1}, - [166] = {.lex_state = 2, .external_lex_state = 1}, - [167] = {.lex_state = 2, .external_lex_state = 1}, - [168] = {.lex_state = 2, .external_lex_state = 1}, - [169] = {.lex_state = 2, .external_lex_state = 1}, - [170] = {.lex_state = 18, .external_lex_state = 2}, - [171] = {.lex_state = 2, .external_lex_state = 1}, - [172] = {.lex_state = 2, .external_lex_state = 1}, - [173] = {.lex_state = 2, .external_lex_state = 1}, - [174] = {.lex_state = 2, .external_lex_state = 1}, - [175] = {.lex_state = 2, .external_lex_state = 1}, - [176] = {.lex_state = 2, .external_lex_state = 1}, - [177] = {.lex_state = 2, .external_lex_state = 1}, - [178] = {.lex_state = 2, .external_lex_state = 1}, - [179] = {.lex_state = 2, .external_lex_state = 1}, - [180] = {.lex_state = 2, .external_lex_state = 1}, - [181] = {.lex_state = 2, .external_lex_state = 1}, - [182] = {.lex_state = 2, .external_lex_state = 1}, - [183] = {.lex_state = 2, .external_lex_state = 1}, - [184] = {.lex_state = 18, .external_lex_state = 2}, - [185] = {.lex_state = 2, .external_lex_state = 1}, - [186] = {.lex_state = 2, .external_lex_state = 1}, - [187] = {.lex_state = 2, .external_lex_state = 1}, - [188] = {.lex_state = 2, .external_lex_state = 1}, - [189] = {.lex_state = 2, .external_lex_state = 1}, - [190] = {.lex_state = 2, .external_lex_state = 1}, - [191] = {.lex_state = 18, .external_lex_state = 2}, - [192] = {.lex_state = 19, .external_lex_state = 2}, - [193] = {.lex_state = 23, .external_lex_state = 2}, - [194] = {.lex_state = 19, .external_lex_state = 2}, - [195] = {.lex_state = 20, .external_lex_state = 2}, - [196] = {.lex_state = 20, .external_lex_state = 2}, - [197] = {.lex_state = 20, .external_lex_state = 2}, - [198] = {.lex_state = 19, .external_lex_state = 2}, - [199] = {.lex_state = 21, .external_lex_state = 2}, - [200] = {.lex_state = 23, .external_lex_state = 2}, - [201] = {.lex_state = 22, .external_lex_state = 2}, - [202] = {.lex_state = 21, .external_lex_state = 2}, - [203] = {.lex_state = 21, .external_lex_state = 2}, - [204] = {.lex_state = 23, .external_lex_state = 2}, - [205] = {.lex_state = 19, .external_lex_state = 2}, - [206] = {.lex_state = 22, .external_lex_state = 2}, - [207] = {.lex_state = 19, .external_lex_state = 2}, - [208] = {.lex_state = 21, .external_lex_state = 2}, - [209] = {.lex_state = 20, .external_lex_state = 2}, - [210] = {.lex_state = 19, .external_lex_state = 2}, - [211] = {.lex_state = 22, .external_lex_state = 2}, - [212] = {.lex_state = 19, .external_lex_state = 2}, - [213] = {.lex_state = 21, .external_lex_state = 2}, - [214] = {.lex_state = 22, .external_lex_state = 2}, - [215] = {.lex_state = 21, .external_lex_state = 2}, - [216] = {.lex_state = 22, .external_lex_state = 2}, - [217] = {.lex_state = 23, .external_lex_state = 2}, - [218] = {.lex_state = 20, .external_lex_state = 2}, - [219] = {.lex_state = 19, .external_lex_state = 2}, - [220] = {.lex_state = 20, .external_lex_state = 2}, - [221] = {.lex_state = 22, .external_lex_state = 2}, - [222] = {.lex_state = 23, .external_lex_state = 2}, - [223] = {.lex_state = 22, .external_lex_state = 2}, - [224] = {.lex_state = 19, .external_lex_state = 2}, - [225] = {.lex_state = 21, .external_lex_state = 2}, - [226] = {.lex_state = 21, .external_lex_state = 2}, - [227] = {.lex_state = 22, .external_lex_state = 2}, - [228] = {.lex_state = 23, .external_lex_state = 2}, - [229] = {.lex_state = 20, .external_lex_state = 2}, - [230] = {.lex_state = 19, .external_lex_state = 2}, - [231] = {.lex_state = 23, .external_lex_state = 2}, - [232] = {.lex_state = 20, .external_lex_state = 2}, - [233] = {.lex_state = 19, .external_lex_state = 2}, - [234] = {.lex_state = 20, .external_lex_state = 2}, - [235] = {.lex_state = 22, .external_lex_state = 2}, - [236] = {.lex_state = 23, .external_lex_state = 2}, - [237] = {.lex_state = 23, .external_lex_state = 2}, - [238] = {.lex_state = 22, .external_lex_state = 2}, - [239] = {.lex_state = 21, .external_lex_state = 2}, - [240] = {.lex_state = 22, .external_lex_state = 2}, - [241] = {.lex_state = 20, .external_lex_state = 2}, - [242] = {.lex_state = 21, .external_lex_state = 2}, - [243] = {.lex_state = 19, .external_lex_state = 2}, - [244] = {.lex_state = 23, .external_lex_state = 2}, - [245] = {.lex_state = 23, .external_lex_state = 2}, - [246] = {.lex_state = 20, .external_lex_state = 2}, - [247] = {.lex_state = 22, .external_lex_state = 2}, - [248] = {.lex_state = 20, .external_lex_state = 2}, - [249] = {.lex_state = 19, .external_lex_state = 2}, - [250] = {.lex_state = 20, .external_lex_state = 2}, - [251] = {.lex_state = 23, .external_lex_state = 2}, - [252] = {.lex_state = 21, .external_lex_state = 2}, - [253] = {.lex_state = 23, .external_lex_state = 2}, - [254] = {.lex_state = 21, .external_lex_state = 2}, - [255] = {.lex_state = 19, .external_lex_state = 2}, - [256] = {.lex_state = 22, .external_lex_state = 2}, - [257] = {.lex_state = 21, .external_lex_state = 2}, - [258] = {.lex_state = 20, .external_lex_state = 2}, - [259] = {.lex_state = 23, .external_lex_state = 2}, - [260] = {.lex_state = 21, .external_lex_state = 2}, - [261] = {.lex_state = 22, .external_lex_state = 2}, - [262] = {.lex_state = 24, .external_lex_state = 2}, - [263] = {.lex_state = 23, .external_lex_state = 2}, - [264] = {.lex_state = 21, .external_lex_state = 2}, - [265] = {.lex_state = 20, .external_lex_state = 2}, - [266] = {.lex_state = 24, .external_lex_state = 2}, - [267] = {.lex_state = 19, .external_lex_state = 2}, - [268] = {.lex_state = 22, .external_lex_state = 2}, - [269] = {.lex_state = 7, .external_lex_state = 3}, - [270] = {.lex_state = 7, .external_lex_state = 3}, - [271] = {.lex_state = 7, .external_lex_state = 3}, - [272] = {.lex_state = 7, .external_lex_state = 3}, - [273] = {.lex_state = 2, .external_lex_state = 1}, - [274] = {.lex_state = 7, .external_lex_state = 3}, - [275] = {.lex_state = 7, .external_lex_state = 3}, - [276] = {.lex_state = 7, .external_lex_state = 3}, - [277] = {.lex_state = 7, .external_lex_state = 3}, - [278] = {.lex_state = 7, .external_lex_state = 3}, - [279] = {.lex_state = 2, .external_lex_state = 1}, - [280] = {.lex_state = 3, .external_lex_state = 3}, - [281] = {.lex_state = 3, .external_lex_state = 3}, - [282] = {.lex_state = 3, .external_lex_state = 3}, - [283] = {.lex_state = 3, .external_lex_state = 3}, - [284] = {.lex_state = 3, .external_lex_state = 3}, - [285] = {.lex_state = 3, .external_lex_state = 3}, - [286] = {.lex_state = 3, .external_lex_state = 3}, - [287] = {.lex_state = 3, .external_lex_state = 3}, - [288] = {.lex_state = 3, .external_lex_state = 3}, - [289] = {.lex_state = 3, .external_lex_state = 3}, - [290] = {.lex_state = 3, .external_lex_state = 3}, - [291] = {.lex_state = 3, .external_lex_state = 3}, - [292] = {.lex_state = 3, .external_lex_state = 3}, - [293] = {.lex_state = 3, .external_lex_state = 3}, - [294] = {.lex_state = 3, .external_lex_state = 3}, - [295] = {.lex_state = 3, .external_lex_state = 3}, - [296] = {.lex_state = 3, .external_lex_state = 3}, - [297] = {.lex_state = 3, .external_lex_state = 3}, - [298] = {.lex_state = 3, .external_lex_state = 3}, - [299] = {.lex_state = 3, .external_lex_state = 3}, - [300] = {.lex_state = 3, .external_lex_state = 3}, - [301] = {.lex_state = 3, .external_lex_state = 3}, - [302] = {.lex_state = 3, .external_lex_state = 3}, - [303] = {.lex_state = 3, .external_lex_state = 3}, - [304] = {.lex_state = 3, .external_lex_state = 3}, - [305] = {.lex_state = 3, .external_lex_state = 3}, - [306] = {.lex_state = 3, .external_lex_state = 3}, - [307] = {.lex_state = 3, .external_lex_state = 3}, - [308] = {.lex_state = 5, .external_lex_state = 3}, - [309] = {.lex_state = 5, .external_lex_state = 3}, - [310] = {.lex_state = 8}, - [311] = {.lex_state = 12}, - [312] = {.lex_state = 8}, - [313] = {.lex_state = 8}, - [314] = {.lex_state = 8}, - [315] = {.lex_state = 12}, - [316] = {.lex_state = 55}, - [317] = {.lex_state = 8}, - [318] = {.lex_state = 8}, - [319] = {.lex_state = 55}, - [320] = {.lex_state = 3}, - [321] = {.lex_state = 3}, - [322] = {.lex_state = 1, .external_lex_state = 1}, - [323] = {.lex_state = 9}, - [324] = {.lex_state = 9}, - [325] = {.lex_state = 9}, - [326] = {.lex_state = 9}, - [327] = {.lex_state = 9}, - [328] = {.lex_state = 9}, - [329] = {.lex_state = 9}, - [330] = {.lex_state = 9}, - [331] = {.lex_state = 9}, - [332] = {.lex_state = 9}, - [333] = {.lex_state = 9}, - [334] = {.lex_state = 9}, - [335] = {.lex_state = 9}, - [336] = {.lex_state = 9}, - [337] = {.lex_state = 9}, - [338] = {.lex_state = 9}, - [339] = {.lex_state = 9}, - [340] = {.lex_state = 9}, - [341] = {.lex_state = 9}, - [342] = {.lex_state = 9}, - [343] = {.lex_state = 9}, - [344] = {.lex_state = 9}, - [345] = {.lex_state = 9}, - [346] = {.lex_state = 2, .external_lex_state = 1}, - [347] = {.lex_state = 4, .external_lex_state = 3}, - [348] = {.lex_state = 2, .external_lex_state = 1}, - [349] = {.lex_state = 2, .external_lex_state = 1}, - [350] = {.lex_state = 2, .external_lex_state = 1}, - [351] = {.lex_state = 2, .external_lex_state = 1}, - [352] = {.lex_state = 2, .external_lex_state = 1}, - [353] = {.lex_state = 2, .external_lex_state = 1}, - [354] = {.lex_state = 2, .external_lex_state = 1}, - [355] = {.lex_state = 2, .external_lex_state = 1}, - [356] = {.lex_state = 2, .external_lex_state = 1}, - [357] = {.lex_state = 2, .external_lex_state = 1}, - [358] = {.lex_state = 2, .external_lex_state = 1}, - [359] = {.lex_state = 2, .external_lex_state = 1}, - [360] = {.lex_state = 11}, - [361] = {.lex_state = 18, .external_lex_state = 2}, - [362] = {.lex_state = 18, .external_lex_state = 2}, - [363] = {.lex_state = 18, .external_lex_state = 2}, - [364] = {.lex_state = 18, .external_lex_state = 2}, - [365] = {.lex_state = 18, .external_lex_state = 2}, - [366] = {.lex_state = 18, .external_lex_state = 2}, - [367] = {.lex_state = 18, .external_lex_state = 2}, - [368] = {.lex_state = 18, .external_lex_state = 2}, - [369] = {.lex_state = 18, .external_lex_state = 2}, - [370] = {.lex_state = 18, .external_lex_state = 2}, - [371] = {.lex_state = 18, .external_lex_state = 2}, - [372] = {.lex_state = 18, .external_lex_state = 2}, - [373] = {.lex_state = 18, .external_lex_state = 2}, - [374] = {.lex_state = 54}, - [375] = {.lex_state = 18, .external_lex_state = 2}, - [376] = {.lex_state = 18, .external_lex_state = 2}, - [377] = {.lex_state = 18, .external_lex_state = 2}, - [378] = {.lex_state = 18, .external_lex_state = 2}, - [379] = {.lex_state = 10}, - [380] = {.lex_state = 18, .external_lex_state = 2}, - [381] = {.lex_state = 18, .external_lex_state = 2}, - [382] = {.lex_state = 18, .external_lex_state = 2}, - [383] = {.lex_state = 5, .external_lex_state = 3}, - [384] = {.lex_state = 18, .external_lex_state = 2}, - [385] = {.lex_state = 18, .external_lex_state = 2}, - [386] = {.lex_state = 18, .external_lex_state = 2}, - [387] = {.lex_state = 18, .external_lex_state = 2}, - [388] = {.lex_state = 18, .external_lex_state = 2}, - [389] = {.lex_state = 18, .external_lex_state = 2}, - [390] = {.lex_state = 18, .external_lex_state = 2}, - [391] = {.lex_state = 6}, - [392] = {.lex_state = 18, .external_lex_state = 2}, - [393] = {.lex_state = 18, .external_lex_state = 2}, - [394] = {.lex_state = 18, .external_lex_state = 2}, - [395] = {.lex_state = 18, .external_lex_state = 2}, - [396] = {.lex_state = 18, .external_lex_state = 2}, - [397] = {.lex_state = 18, .external_lex_state = 2}, - [398] = {.lex_state = 18, .external_lex_state = 2}, - [399] = {.lex_state = 18, .external_lex_state = 2}, - [400] = {.lex_state = 18, .external_lex_state = 2}, - [401] = {.lex_state = 18, .external_lex_state = 2}, - [402] = {.lex_state = 18, .external_lex_state = 2}, - [403] = {.lex_state = 18, .external_lex_state = 2}, - [404] = {.lex_state = 18, .external_lex_state = 2}, - [405] = {.lex_state = 18, .external_lex_state = 2}, - [406] = {.lex_state = 18, .external_lex_state = 2}, - [407] = {.lex_state = 18, .external_lex_state = 2}, - [408] = {.lex_state = 5, .external_lex_state = 3}, - [409] = {.lex_state = 5, .external_lex_state = 3}, - [410] = {.lex_state = 5, .external_lex_state = 3}, - [411] = {.lex_state = 5, .external_lex_state = 3}, - [412] = {.lex_state = 5, .external_lex_state = 3}, - [413] = {.lex_state = 5, .external_lex_state = 3}, - [414] = {.lex_state = 5, .external_lex_state = 3}, - [415] = {.lex_state = 5, .external_lex_state = 3}, - [416] = {.lex_state = 5, .external_lex_state = 3}, - [417] = {.lex_state = 5, .external_lex_state = 3}, - [418] = {.lex_state = 5, .external_lex_state = 3}, + [166] = {.lex_state = 7, .external_lex_state = 3}, + [167] = {.lex_state = 3, .external_lex_state = 3}, + [168] = {.lex_state = 3, .external_lex_state = 3}, + [169] = {.lex_state = 3, .external_lex_state = 3}, + [170] = {.lex_state = 3, .external_lex_state = 3}, + [171] = {.lex_state = 3, .external_lex_state = 3}, + [172] = {.lex_state = 3, .external_lex_state = 3}, + [173] = {.lex_state = 3, .external_lex_state = 3}, + [174] = {.lex_state = 3, .external_lex_state = 3}, + [175] = {.lex_state = 3, .external_lex_state = 3}, + [176] = {.lex_state = 3, .external_lex_state = 3}, + [177] = {.lex_state = 3, .external_lex_state = 3}, + [178] = {.lex_state = 3, .external_lex_state = 3}, + [179] = {.lex_state = 3, .external_lex_state = 3}, + [180] = {.lex_state = 3, .external_lex_state = 3}, + [181] = {.lex_state = 3, .external_lex_state = 3}, + [182] = {.lex_state = 3, .external_lex_state = 3}, + [183] = {.lex_state = 3, .external_lex_state = 3}, + [184] = {.lex_state = 3, .external_lex_state = 3}, + [185] = {.lex_state = 3, .external_lex_state = 3}, + [186] = {.lex_state = 3, .external_lex_state = 3}, + [187] = {.lex_state = 3, .external_lex_state = 3}, + [188] = {.lex_state = 3, .external_lex_state = 3}, + [189] = {.lex_state = 3, .external_lex_state = 3}, + [190] = {.lex_state = 3, .external_lex_state = 3}, + [191] = {.lex_state = 3, .external_lex_state = 3}, + [192] = {.lex_state = 3, .external_lex_state = 3}, + [193] = {.lex_state = 3, .external_lex_state = 3}, + [194] = {.lex_state = 3, .external_lex_state = 3}, + [195] = {.lex_state = 5, .external_lex_state = 3}, + [196] = {.lex_state = 5, .external_lex_state = 3}, + [197] = {.lex_state = 8}, + [198] = {.lex_state = 8}, + [199] = {.lex_state = 8}, + [200] = {.lex_state = 12}, + [201] = {.lex_state = 8}, + [202] = {.lex_state = 12}, + [203] = {.lex_state = 3}, + [204] = {.lex_state = 55}, + [205] = {.lex_state = 8}, + [206] = {.lex_state = 3}, + [207] = {.lex_state = 55}, + [208] = {.lex_state = 8}, + [209] = {.lex_state = 1, .external_lex_state = 1}, + [210] = {.lex_state = 9}, + [211] = {.lex_state = 9}, + [212] = {.lex_state = 9}, + [213] = {.lex_state = 9}, + [214] = {.lex_state = 9}, + [215] = {.lex_state = 9}, + [216] = {.lex_state = 9}, + [217] = {.lex_state = 9}, + [218] = {.lex_state = 9}, + [219] = {.lex_state = 9}, + [220] = {.lex_state = 9}, + [221] = {.lex_state = 9}, + [222] = {.lex_state = 9}, + [223] = {.lex_state = 9}, + [224] = {.lex_state = 9}, + [225] = {.lex_state = 9}, + [226] = {.lex_state = 9}, + [227] = {.lex_state = 9}, + [228] = {.lex_state = 9}, + [229] = {.lex_state = 9}, + [230] = {.lex_state = 9}, + [231] = {.lex_state = 9}, + [232] = {.lex_state = 9}, + [233] = {.lex_state = 2, .external_lex_state = 1}, + [234] = {.lex_state = 4, .external_lex_state = 3}, + [235] = {.lex_state = 2, .external_lex_state = 1}, + [236] = {.lex_state = 2, .external_lex_state = 1}, + [237] = {.lex_state = 2, .external_lex_state = 1}, + [238] = {.lex_state = 2, .external_lex_state = 1}, + [239] = {.lex_state = 2, .external_lex_state = 1}, + [240] = {.lex_state = 2, .external_lex_state = 1}, + [241] = {.lex_state = 2, .external_lex_state = 1}, + [242] = {.lex_state = 2, .external_lex_state = 1}, + [243] = {.lex_state = 2, .external_lex_state = 1}, + [244] = {.lex_state = 2, .external_lex_state = 1}, + [245] = {.lex_state = 2, .external_lex_state = 1}, + [246] = {.lex_state = 2, .external_lex_state = 1}, + [247] = {.lex_state = 11}, + [248] = {.lex_state = 18, .external_lex_state = 2}, + [249] = {.lex_state = 18, .external_lex_state = 2}, + [250] = {.lex_state = 18, .external_lex_state = 2}, + [251] = {.lex_state = 18, .external_lex_state = 2}, + [252] = {.lex_state = 18, .external_lex_state = 2}, + [253] = {.lex_state = 18, .external_lex_state = 2}, + [254] = {.lex_state = 6}, + [255] = {.lex_state = 18, .external_lex_state = 2}, + [256] = {.lex_state = 10}, + [257] = {.lex_state = 18, .external_lex_state = 2}, + [258] = {.lex_state = 18, .external_lex_state = 2}, + [259] = {.lex_state = 18, .external_lex_state = 2}, + [260] = {.lex_state = 18, .external_lex_state = 2}, + [261] = {.lex_state = 18, .external_lex_state = 2}, + [262] = {.lex_state = 18, .external_lex_state = 2}, + [263] = {.lex_state = 18, .external_lex_state = 2}, + [264] = {.lex_state = 18, .external_lex_state = 2}, + [265] = {.lex_state = 18, .external_lex_state = 2}, + [266] = {.lex_state = 18, .external_lex_state = 2}, + [267] = {.lex_state = 18, .external_lex_state = 2}, + [268] = {.lex_state = 18, .external_lex_state = 2}, + [269] = {.lex_state = 18, .external_lex_state = 2}, + [270] = {.lex_state = 18, .external_lex_state = 2}, + [271] = {.lex_state = 18, .external_lex_state = 2}, + [272] = {.lex_state = 18, .external_lex_state = 2}, + [273] = {.lex_state = 18, .external_lex_state = 2}, + [274] = {.lex_state = 18, .external_lex_state = 2}, + [275] = {.lex_state = 18, .external_lex_state = 2}, + [276] = {.lex_state = 18, .external_lex_state = 2}, + [277] = {.lex_state = 18, .external_lex_state = 2}, + [278] = {.lex_state = 18, .external_lex_state = 2}, + [279] = {.lex_state = 18, .external_lex_state = 2}, + [280] = {.lex_state = 18, .external_lex_state = 2}, + [281] = {.lex_state = 18, .external_lex_state = 2}, + [282] = {.lex_state = 18, .external_lex_state = 2}, + [283] = {.lex_state = 5, .external_lex_state = 3}, + [284] = {.lex_state = 18, .external_lex_state = 2}, + [285] = {.lex_state = 54}, + [286] = {.lex_state = 18, .external_lex_state = 2}, + [287] = {.lex_state = 18, .external_lex_state = 2}, + [288] = {.lex_state = 5, .external_lex_state = 3}, + [289] = {.lex_state = 5, .external_lex_state = 3}, + [290] = {.lex_state = 5, .external_lex_state = 3}, + [291] = {.lex_state = 5, .external_lex_state = 3}, + [292] = {.lex_state = 5, .external_lex_state = 3}, + [293] = {.lex_state = 5, .external_lex_state = 3}, + [294] = {.lex_state = 5, .external_lex_state = 3}, + [295] = {.lex_state = 5, .external_lex_state = 3}, + [296] = {.lex_state = 5, .external_lex_state = 3}, + [297] = {.lex_state = 5, .external_lex_state = 3}, + [298] = {.lex_state = 5, .external_lex_state = 3}, + [299] = {.lex_state = 20, .external_lex_state = 2}, + [300] = {.lex_state = 21, .external_lex_state = 2}, + [301] = {.lex_state = 23, .external_lex_state = 2}, + [302] = {.lex_state = 23, .external_lex_state = 2}, + [303] = {.lex_state = 23, .external_lex_state = 2}, + [304] = {.lex_state = 24, .external_lex_state = 2}, + [305] = {.lex_state = 12}, + [306] = {.lex_state = 23, .external_lex_state = 2}, + [307] = {.lex_state = 23, .external_lex_state = 2}, + [308] = {.lex_state = 23, .external_lex_state = 2}, + [309] = {.lex_state = 23, .external_lex_state = 2}, + [310] = {.lex_state = 23, .external_lex_state = 2}, + [311] = {.lex_state = 23, .external_lex_state = 2}, + [312] = {.lex_state = 19, .external_lex_state = 2}, + [313] = {.lex_state = 24, .external_lex_state = 2}, + [314] = {.lex_state = 7, .external_lex_state = 3}, + [315] = {.lex_state = 19, .external_lex_state = 2}, + [316] = {.lex_state = 19, .external_lex_state = 2}, + [317] = {.lex_state = 19, .external_lex_state = 2}, + [318] = {.lex_state = 19, .external_lex_state = 2}, + [319] = {.lex_state = 19, .external_lex_state = 2}, + [320] = {.lex_state = 19, .external_lex_state = 2}, + [321] = {.lex_state = 19, .external_lex_state = 2}, + [322] = {.lex_state = 24, .external_lex_state = 2}, + [323] = {.lex_state = 19, .external_lex_state = 2}, + [324] = {.lex_state = 19, .external_lex_state = 2}, + [325] = {.lex_state = 24, .external_lex_state = 2}, + [326] = {.lex_state = 19, .external_lex_state = 2}, + [327] = {.lex_state = 19, .external_lex_state = 2}, + [328] = {.lex_state = 19, .external_lex_state = 2}, + [329] = {.lex_state = 19, .external_lex_state = 2}, + [330] = {.lex_state = 19, .external_lex_state = 2}, + [331] = {.lex_state = 19, .external_lex_state = 2}, + [332] = {.lex_state = 19, .external_lex_state = 2}, + [333] = {.lex_state = 24, .external_lex_state = 2}, + [334] = {.lex_state = 23, .external_lex_state = 2}, + [335] = {.lex_state = 19, .external_lex_state = 2}, + [336] = {.lex_state = 19, .external_lex_state = 2}, + [337] = {.lex_state = 19, .external_lex_state = 2}, + [338] = {.lex_state = 19, .external_lex_state = 2}, + [339] = {.lex_state = 19, .external_lex_state = 2}, + [340] = {.lex_state = 19, .external_lex_state = 2}, + [341] = {.lex_state = 24, .external_lex_state = 2}, + [342] = {.lex_state = 24, .external_lex_state = 2}, + [343] = {.lex_state = 19, .external_lex_state = 2}, + [344] = {.lex_state = 19, .external_lex_state = 2}, + [345] = {.lex_state = 19, .external_lex_state = 2}, + [346] = {.lex_state = 19, .external_lex_state = 2}, + [347] = {.lex_state = 19, .external_lex_state = 2}, + [348] = {.lex_state = 19, .external_lex_state = 2}, + [349] = {.lex_state = 22, .external_lex_state = 2}, + [350] = {.lex_state = 24, .external_lex_state = 2}, + [351] = {.lex_state = 24, .external_lex_state = 2}, + [352] = {.lex_state = 22, .external_lex_state = 2}, + [353] = {.lex_state = 22, .external_lex_state = 2}, + [354] = {.lex_state = 22, .external_lex_state = 2}, + [355] = {.lex_state = 22, .external_lex_state = 2}, + [356] = {.lex_state = 22, .external_lex_state = 2}, + [357] = {.lex_state = 22, .external_lex_state = 2}, + [358] = {.lex_state = 22, .external_lex_state = 2}, + [359] = {.lex_state = 22, .external_lex_state = 2}, + [360] = {.lex_state = 22, .external_lex_state = 2}, + [361] = {.lex_state = 24, .external_lex_state = 2}, + [362] = {.lex_state = 22, .external_lex_state = 2}, + [363] = {.lex_state = 22, .external_lex_state = 2}, + [364] = {.lex_state = 22, .external_lex_state = 2}, + [365] = {.lex_state = 22, .external_lex_state = 2}, + [366] = {.lex_state = 22, .external_lex_state = 2}, + [367] = {.lex_state = 22, .external_lex_state = 2}, + [368] = {.lex_state = 22, .external_lex_state = 2}, + [369] = {.lex_state = 24, .external_lex_state = 2}, + [370] = {.lex_state = 24, .external_lex_state = 2}, + [371] = {.lex_state = 22, .external_lex_state = 2}, + [372] = {.lex_state = 22, .external_lex_state = 2}, + [373] = {.lex_state = 22, .external_lex_state = 2}, + [374] = {.lex_state = 22, .external_lex_state = 2}, + [375] = {.lex_state = 22, .external_lex_state = 2}, + [376] = {.lex_state = 22, .external_lex_state = 2}, + [377] = {.lex_state = 24, .external_lex_state = 2}, + [378] = {.lex_state = 24, .external_lex_state = 2}, + [379] = {.lex_state = 22, .external_lex_state = 2}, + [380] = {.lex_state = 22, .external_lex_state = 2}, + [381] = {.lex_state = 22, .external_lex_state = 2}, + [382] = {.lex_state = 22, .external_lex_state = 2}, + [383] = {.lex_state = 22, .external_lex_state = 2}, + [384] = {.lex_state = 22, .external_lex_state = 2}, + [385] = {.lex_state = 21, .external_lex_state = 2}, + [386] = {.lex_state = 24, .external_lex_state = 2}, + [387] = {.lex_state = 24, .external_lex_state = 2}, + [388] = {.lex_state = 21, .external_lex_state = 2}, + [389] = {.lex_state = 21, .external_lex_state = 2}, + [390] = {.lex_state = 21, .external_lex_state = 2}, + [391] = {.lex_state = 21, .external_lex_state = 2}, + [392] = {.lex_state = 21, .external_lex_state = 2}, + [393] = {.lex_state = 21, .external_lex_state = 2}, + [394] = {.lex_state = 21, .external_lex_state = 2}, + [395] = {.lex_state = 21, .external_lex_state = 2}, + [396] = {.lex_state = 21, .external_lex_state = 2}, + [397] = {.lex_state = 23, .external_lex_state = 2}, + [398] = {.lex_state = 21, .external_lex_state = 2}, + [399] = {.lex_state = 21, .external_lex_state = 2}, + [400] = {.lex_state = 21, .external_lex_state = 2}, + [401] = {.lex_state = 21, .external_lex_state = 2}, + [402] = {.lex_state = 21, .external_lex_state = 2}, + [403] = {.lex_state = 21, .external_lex_state = 2}, + [404] = {.lex_state = 21, .external_lex_state = 2}, + [405] = {.lex_state = 24, .external_lex_state = 2}, + [406] = {.lex_state = 23, .external_lex_state = 2}, + [407] = {.lex_state = 21, .external_lex_state = 2}, + [408] = {.lex_state = 21, .external_lex_state = 2}, + [409] = {.lex_state = 21, .external_lex_state = 2}, + [410] = {.lex_state = 24, .external_lex_state = 2}, + [411] = {.lex_state = 21, .external_lex_state = 2}, + [412] = {.lex_state = 21, .external_lex_state = 2}, + [413] = {.lex_state = 23, .external_lex_state = 2}, + [414] = {.lex_state = 24, .external_lex_state = 2}, + [415] = {.lex_state = 21, .external_lex_state = 2}, + [416] = {.lex_state = 21, .external_lex_state = 2}, + [417] = {.lex_state = 21, .external_lex_state = 2}, + [418] = {.lex_state = 21, .external_lex_state = 2}, [419] = {.lex_state = 21, .external_lex_state = 2}, - [420] = {.lex_state = 23, .external_lex_state = 2}, - [421] = {.lex_state = 22, .external_lex_state = 2}, - [422] = {.lex_state = 22, .external_lex_state = 2}, - [423] = {.lex_state = 22, .external_lex_state = 2}, - [424] = {.lex_state = 22, .external_lex_state = 2}, - [425] = {.lex_state = 22, .external_lex_state = 2}, - [426] = {.lex_state = 22, .external_lex_state = 2}, - [427] = {.lex_state = 22, .external_lex_state = 2}, - [428] = {.lex_state = 22, .external_lex_state = 2}, - [429] = {.lex_state = 22, .external_lex_state = 2}, - [430] = {.lex_state = 22, .external_lex_state = 2}, - [431] = {.lex_state = 22, .external_lex_state = 2}, - [432] = {.lex_state = 22, .external_lex_state = 2}, - [433] = {.lex_state = 22, .external_lex_state = 2}, - [434] = {.lex_state = 22, .external_lex_state = 2}, - [435] = {.lex_state = 22, .external_lex_state = 2}, - [436] = {.lex_state = 22, .external_lex_state = 2}, - [437] = {.lex_state = 22, .external_lex_state = 2}, - [438] = {.lex_state = 22, .external_lex_state = 2}, - [439] = {.lex_state = 22, .external_lex_state = 2}, - [440] = {.lex_state = 22, .external_lex_state = 2}, - [441] = {.lex_state = 19, .external_lex_state = 2}, - [442] = {.lex_state = 22, .external_lex_state = 2}, - [443] = {.lex_state = 22, .external_lex_state = 2}, - [444] = {.lex_state = 22, .external_lex_state = 2}, - [445] = {.lex_state = 22, .external_lex_state = 2}, - [446] = {.lex_state = 22, .external_lex_state = 2}, - [447] = {.lex_state = 19, .external_lex_state = 2}, - [448] = {.lex_state = 19, .external_lex_state = 2}, - [449] = {.lex_state = 22, .external_lex_state = 2}, - [450] = {.lex_state = 22, .external_lex_state = 2}, - [451] = {.lex_state = 21, .external_lex_state = 2}, - [452] = {.lex_state = 21, .external_lex_state = 2}, - [453] = {.lex_state = 21, .external_lex_state = 2}, - [454] = {.lex_state = 21, .external_lex_state = 2}, - [455] = {.lex_state = 21, .external_lex_state = 2}, - [456] = {.lex_state = 21, .external_lex_state = 2}, + [420] = {.lex_state = 21, .external_lex_state = 2}, + [421] = {.lex_state = 20, .external_lex_state = 2}, + [422] = {.lex_state = 23, .external_lex_state = 2}, + [423] = {.lex_state = 24, .external_lex_state = 2}, + [424] = {.lex_state = 24, .external_lex_state = 2}, + [425] = {.lex_state = 20, .external_lex_state = 2}, + [426] = {.lex_state = 20, .external_lex_state = 2}, + [427] = {.lex_state = 20, .external_lex_state = 2}, + [428] = {.lex_state = 20, .external_lex_state = 2}, + [429] = {.lex_state = 20, .external_lex_state = 2}, + [430] = {.lex_state = 20, .external_lex_state = 2}, + [431] = {.lex_state = 20, .external_lex_state = 2}, + [432] = {.lex_state = 20, .external_lex_state = 2}, + [433] = {.lex_state = 20, .external_lex_state = 2}, + [434] = {.lex_state = 23, .external_lex_state = 2}, + [435] = {.lex_state = 20, .external_lex_state = 2}, + [436] = {.lex_state = 20, .external_lex_state = 2}, + [437] = {.lex_state = 20, .external_lex_state = 2}, + [438] = {.lex_state = 20, .external_lex_state = 2}, + [439] = {.lex_state = 20, .external_lex_state = 2}, + [440] = {.lex_state = 20, .external_lex_state = 2}, + [441] = {.lex_state = 23, .external_lex_state = 2}, + [442] = {.lex_state = 20, .external_lex_state = 2}, + [443] = {.lex_state = 20, .external_lex_state = 2}, + [444] = {.lex_state = 20, .external_lex_state = 2}, + [445] = {.lex_state = 20, .external_lex_state = 2}, + [446] = {.lex_state = 20, .external_lex_state = 2}, + [447] = {.lex_state = 20, .external_lex_state = 2}, + [448] = {.lex_state = 23, .external_lex_state = 2}, + [449] = {.lex_state = 23, .external_lex_state = 2}, + [450] = {.lex_state = 20, .external_lex_state = 2}, + [451] = {.lex_state = 20, .external_lex_state = 2}, + [452] = {.lex_state = 20, .external_lex_state = 2}, + [453] = {.lex_state = 20, .external_lex_state = 2}, + [454] = {.lex_state = 20, .external_lex_state = 2}, + [455] = {.lex_state = 20, .external_lex_state = 2}, + [456] = {.lex_state = 23, .external_lex_state = 2}, [457] = {.lex_state = 23, .external_lex_state = 2}, - [458] = {.lex_state = 19, .external_lex_state = 2}, - [459] = {.lex_state = 21, .external_lex_state = 2}, - [460] = {.lex_state = 21, .external_lex_state = 2}, - [461] = {.lex_state = 21, .external_lex_state = 2}, - [462] = {.lex_state = 21, .external_lex_state = 2}, - [463] = {.lex_state = 21, .external_lex_state = 2}, - [464] = {.lex_state = 21, .external_lex_state = 2}, - [465] = {.lex_state = 21, .external_lex_state = 2}, - [466] = {.lex_state = 21, .external_lex_state = 2}, - [467] = {.lex_state = 21, .external_lex_state = 2}, - [468] = {.lex_state = 21, .external_lex_state = 2}, - [469] = {.lex_state = 21, .external_lex_state = 2}, - [470] = {.lex_state = 21, .external_lex_state = 2}, - [471] = {.lex_state = 21, .external_lex_state = 2}, - [472] = {.lex_state = 21, .external_lex_state = 2}, - [473] = {.lex_state = 21, .external_lex_state = 2}, - [474] = {.lex_state = 21, .external_lex_state = 2}, - [475] = {.lex_state = 21, .external_lex_state = 2}, - [476] = {.lex_state = 21, .external_lex_state = 2}, - [477] = {.lex_state = 21, .external_lex_state = 2}, - [478] = {.lex_state = 21, .external_lex_state = 2}, - [479] = {.lex_state = 21, .external_lex_state = 2}, - [480] = {.lex_state = 19, .external_lex_state = 2}, - [481] = {.lex_state = 21, .external_lex_state = 2}, - [482] = {.lex_state = 21, .external_lex_state = 2}, - [483] = {.lex_state = 19, .external_lex_state = 2}, - [484] = {.lex_state = 21, .external_lex_state = 2}, - [485] = {.lex_state = 21, .external_lex_state = 2}, - [486] = {.lex_state = 19, .external_lex_state = 2}, - [487] = {.lex_state = 22, .external_lex_state = 2}, - [488] = {.lex_state = 21, .external_lex_state = 2}, - [489] = {.lex_state = 21, .external_lex_state = 2}, - [490] = {.lex_state = 19, .external_lex_state = 2}, - [491] = {.lex_state = 19, .external_lex_state = 2}, - [492] = {.lex_state = 19, .external_lex_state = 2}, - [493] = {.lex_state = 19, .external_lex_state = 2}, - [494] = {.lex_state = 19, .external_lex_state = 2}, - [495] = {.lex_state = 19, .external_lex_state = 2}, - [496] = {.lex_state = 19, .external_lex_state = 2}, - [497] = {.lex_state = 12}, - [498] = {.lex_state = 19, .external_lex_state = 2}, - [499] = {.lex_state = 22, .external_lex_state = 2}, - [500] = {.lex_state = 19, .external_lex_state = 2}, - [501] = {.lex_state = 19, .external_lex_state = 2}, - [502] = {.lex_state = 19, .external_lex_state = 2}, - [503] = {.lex_state = 19, .external_lex_state = 2}, - [504] = {.lex_state = 19, .external_lex_state = 2}, - [505] = {.lex_state = 22, .external_lex_state = 2}, - [506] = {.lex_state = 19, .external_lex_state = 2}, - [507] = {.lex_state = 19, .external_lex_state = 2}, - [508] = {.lex_state = 19, .external_lex_state = 2}, - [509] = {.lex_state = 19, .external_lex_state = 2}, - [510] = {.lex_state = 19, .external_lex_state = 2}, - [511] = {.lex_state = 19, .external_lex_state = 2}, - [512] = {.lex_state = 22, .external_lex_state = 2}, - [513] = {.lex_state = 22, .external_lex_state = 2}, - [514] = {.lex_state = 22, .external_lex_state = 2}, - [515] = {.lex_state = 23, .external_lex_state = 2}, - [516] = {.lex_state = 23, .external_lex_state = 2}, - [517] = {.lex_state = 19, .external_lex_state = 2}, - [518] = {.lex_state = 19, .external_lex_state = 2}, - [519] = {.lex_state = 23, .external_lex_state = 2}, - [520] = {.lex_state = 23, .external_lex_state = 2}, - [521] = {.lex_state = 23, .external_lex_state = 2}, - [522] = {.lex_state = 19, .external_lex_state = 2}, - [523] = {.lex_state = 23, .external_lex_state = 2}, - [524] = {.lex_state = 19, .external_lex_state = 2}, - [525] = {.lex_state = 19, .external_lex_state = 2}, - [526] = {.lex_state = 23, .external_lex_state = 2}, - [527] = {.lex_state = 23, .external_lex_state = 2}, - [528] = {.lex_state = 23, .external_lex_state = 2}, - [529] = {.lex_state = 23, .external_lex_state = 2}, - [530] = {.lex_state = 23, .external_lex_state = 2}, - [531] = {.lex_state = 23, .external_lex_state = 2}, - [532] = {.lex_state = 23, .external_lex_state = 2}, - [533] = {.lex_state = 19, .external_lex_state = 2}, - [534] = {.lex_state = 23, .external_lex_state = 2}, - [535] = {.lex_state = 22, .external_lex_state = 2}, - [536] = {.lex_state = 23, .external_lex_state = 2}, - [537] = {.lex_state = 23, .external_lex_state = 2}, - [538] = {.lex_state = 23, .external_lex_state = 2}, - [539] = {.lex_state = 23, .external_lex_state = 2}, - [540] = {.lex_state = 23, .external_lex_state = 2}, - [541] = {.lex_state = 23, .external_lex_state = 2}, - [542] = {.lex_state = 23, .external_lex_state = 2}, - [543] = {.lex_state = 23, .external_lex_state = 2}, - [544] = {.lex_state = 23, .external_lex_state = 2}, - [545] = {.lex_state = 23, .external_lex_state = 2}, - [546] = {.lex_state = 23, .external_lex_state = 2}, - [547] = {.lex_state = 23, .external_lex_state = 2}, - [548] = {.lex_state = 19, .external_lex_state = 2}, - [549] = {.lex_state = 24, .external_lex_state = 2}, - [550] = {.lex_state = 24, .external_lex_state = 2}, - [551] = {.lex_state = 7, .external_lex_state = 3}, - [552] = {.lex_state = 24, .external_lex_state = 2}, - [553] = {.lex_state = 23, .external_lex_state = 2}, - [554] = {.lex_state = 23, .external_lex_state = 2}, - [555] = {.lex_state = 23, .external_lex_state = 2}, - [556] = {.lex_state = 24, .external_lex_state = 2}, - [557] = {.lex_state = 24, .external_lex_state = 2}, - [558] = {.lex_state = 24, .external_lex_state = 2}, - [559] = {.lex_state = 24, .external_lex_state = 2}, - [560] = {.lex_state = 24, .external_lex_state = 2}, - [561] = {.lex_state = 23, .external_lex_state = 2}, - [562] = {.lex_state = 23, .external_lex_state = 2}, - [563] = {.lex_state = 23, .external_lex_state = 2}, - [564] = {.lex_state = 20, .external_lex_state = 2}, - [565] = {.lex_state = 20, .external_lex_state = 2}, - [566] = {.lex_state = 24, .external_lex_state = 2}, - [567] = {.lex_state = 24, .external_lex_state = 2}, - [568] = {.lex_state = 24, .external_lex_state = 2}, - [569] = {.lex_state = 24, .external_lex_state = 2}, - [570] = {.lex_state = 24, .external_lex_state = 2}, - [571] = {.lex_state = 24, .external_lex_state = 2}, - [572] = {.lex_state = 20, .external_lex_state = 2}, - [573] = {.lex_state = 20, .external_lex_state = 2}, - [574] = {.lex_state = 24, .external_lex_state = 2}, - [575] = {.lex_state = 21, .external_lex_state = 2}, - [576] = {.lex_state = 22, .external_lex_state = 2}, - [577] = {.lex_state = 23, .external_lex_state = 2}, - [578] = {.lex_state = 20, .external_lex_state = 2}, - [579] = {.lex_state = 19, .external_lex_state = 2}, - [580] = {.lex_state = 20, .external_lex_state = 2}, - [581] = {.lex_state = 19, .external_lex_state = 2}, - [582] = {.lex_state = 20, .external_lex_state = 2}, - [583] = {.lex_state = 20, .external_lex_state = 2}, - [584] = {.lex_state = 24, .external_lex_state = 2}, - [585] = {.lex_state = 20, .external_lex_state = 2}, - [586] = {.lex_state = 20, .external_lex_state = 2}, - [587] = {.lex_state = 20, .external_lex_state = 2}, - [588] = {.lex_state = 20, .external_lex_state = 2}, - [589] = {.lex_state = 24, .external_lex_state = 2}, - [590] = {.lex_state = 24, .external_lex_state = 2}, - [591] = {.lex_state = 24, .external_lex_state = 2}, - [592] = {.lex_state = 24, .external_lex_state = 2}, - [593] = {.lex_state = 24, .external_lex_state = 2}, - [594] = {.lex_state = 24, .external_lex_state = 2}, - [595] = {.lex_state = 20, .external_lex_state = 2}, - [596] = {.lex_state = 20, .external_lex_state = 2}, - [597] = {.lex_state = 24, .external_lex_state = 2}, - [598] = {.lex_state = 21, .external_lex_state = 2}, - [599] = {.lex_state = 22, .external_lex_state = 2}, - [600] = {.lex_state = 23, .external_lex_state = 2}, - [601] = {.lex_state = 20, .external_lex_state = 2}, - [602] = {.lex_state = 19, .external_lex_state = 2}, - [603] = {.lex_state = 20, .external_lex_state = 2}, - [604] = {.lex_state = 20, .external_lex_state = 2}, - [605] = {.lex_state = 20, .external_lex_state = 2}, - [606] = {.lex_state = 20, .external_lex_state = 2}, - [607] = {.lex_state = 20, .external_lex_state = 2}, - [608] = {.lex_state = 20, .external_lex_state = 2}, - [609] = {.lex_state = 20, .external_lex_state = 2}, - [610] = {.lex_state = 24, .external_lex_state = 2}, - [611] = {.lex_state = 24, .external_lex_state = 2}, - [612] = {.lex_state = 24, .external_lex_state = 2}, - [613] = {.lex_state = 24, .external_lex_state = 2}, - [614] = {.lex_state = 20, .external_lex_state = 2}, - [615] = {.lex_state = 20, .external_lex_state = 2}, - [616] = {.lex_state = 24, .external_lex_state = 2}, - [617] = {.lex_state = 24, .external_lex_state = 2}, - [618] = {.lex_state = 24, .external_lex_state = 2}, - [619] = {.lex_state = 20, .external_lex_state = 2}, - [620] = {.lex_state = 20, .external_lex_state = 2}, - [621] = {.lex_state = 20, .external_lex_state = 2}, - [622] = {.lex_state = 24, .external_lex_state = 2}, - [623] = {.lex_state = 21, .external_lex_state = 2}, - [624] = {.lex_state = 22, .external_lex_state = 2}, - [625] = {.lex_state = 23, .external_lex_state = 2}, - [626] = {.lex_state = 20, .external_lex_state = 2}, - [627] = {.lex_state = 19, .external_lex_state = 2}, - [628] = {.lex_state = 20, .external_lex_state = 2}, - [629] = {.lex_state = 20, .external_lex_state = 2}, - [630] = {.lex_state = 20, .external_lex_state = 2}, - [631] = {.lex_state = 20, .external_lex_state = 2}, - [632] = {.lex_state = 20, .external_lex_state = 2}, - [633] = {.lex_state = 20, .external_lex_state = 2}, - [634] = {.lex_state = 24, .external_lex_state = 2}, - [635] = {.lex_state = 20, .external_lex_state = 2}, - [636] = {.lex_state = 24, .external_lex_state = 2}, - [637] = {.lex_state = 20, .external_lex_state = 2}, - [638] = {.lex_state = 24, .external_lex_state = 2}, - [639] = {.lex_state = 20, .external_lex_state = 2}, - [640] = {.lex_state = 55}, - [641] = {.lex_state = 12}, - [642] = {.lex_state = 12}, - [643] = {.lex_state = 8}, - [644] = {.lex_state = 12}, - [645] = {.lex_state = 12}, - [646] = {.lex_state = 3}, - [647] = {.lex_state = 12}, - [648] = {.lex_state = 12}, - [649] = {.lex_state = 12}, - [650] = {.lex_state = 8}, - [651] = {.lex_state = 55}, - [652] = {.lex_state = 8}, - [653] = {.lex_state = 8}, - [654] = {.lex_state = 8}, - [655] = {.lex_state = 8}, - [656] = {.lex_state = 8}, - [657] = {.lex_state = 3}, - [658] = {.lex_state = 3}, - [659] = {.lex_state = 3}, - [660] = {.lex_state = 3}, - [661] = {.lex_state = 3}, - [662] = {.lex_state = 3}, - [663] = {.lex_state = 3}, - [664] = {.lex_state = 9}, - [665] = {.lex_state = 9}, - [666] = {.lex_state = 9}, - [667] = {.lex_state = 9}, - [668] = {.lex_state = 9}, - [669] = {.lex_state = 8}, - [670] = {.lex_state = 55}, - [671] = {.lex_state = 55}, - [672] = {.lex_state = 55}, - [673] = {.lex_state = 55}, - [674] = {.lex_state = 55}, - [675] = {.lex_state = 55}, - [676] = {.lex_state = 9}, - [677] = {.lex_state = 9}, - [678] = {.lex_state = 9}, - [679] = {.lex_state = 9}, - [680] = {.lex_state = 9}, - [681] = {.lex_state = 9}, - [682] = {.lex_state = 9}, - [683] = {.lex_state = 9}, - [684] = {.lex_state = 9}, - [685] = {.lex_state = 9}, - [686] = {.lex_state = 9}, - [687] = {.lex_state = 9}, - [688] = {.lex_state = 9}, - [689] = {.lex_state = 9}, - [690] = {.lex_state = 9}, - [691] = {.lex_state = 9}, - [692] = {.lex_state = 9}, - [693] = {.lex_state = 9}, - [694] = {.lex_state = 9}, - [695] = {.lex_state = 9}, - [696] = {.lex_state = 9}, - [697] = {.lex_state = 9}, - [698] = {.lex_state = 9}, - [699] = {.lex_state = 9}, - [700] = {.lex_state = 9}, - [701] = {.lex_state = 9}, - [702] = {.lex_state = 9}, - [703] = {.lex_state = 9}, - [704] = {.lex_state = 9}, - [705] = {.lex_state = 9}, - [706] = {.lex_state = 9}, - [707] = {.lex_state = 9}, - [708] = {.lex_state = 9}, - [709] = {.lex_state = 9}, - [710] = {.lex_state = 9}, - [711] = {.lex_state = 9}, - [712] = {.lex_state = 9}, - [713] = {.lex_state = 9}, - [714] = {.lex_state = 9}, - [715] = {.lex_state = 9}, - [716] = {.lex_state = 9}, - [717] = {.lex_state = 9}, - [718] = {.lex_state = 9}, - [719] = {.lex_state = 9}, - [720] = {.lex_state = 9}, - [721] = {.lex_state = 9}, - [722] = {.lex_state = 9}, - [723] = {.lex_state = 9}, - [724] = {.lex_state = 9}, - [725] = {.lex_state = 9}, - [726] = {.lex_state = 9}, - [727] = {.lex_state = 9}, - [728] = {.lex_state = 9}, - [729] = {.lex_state = 9}, - [730] = {.lex_state = 9}, + [458] = {.lex_state = 23, .external_lex_state = 2}, + [459] = {.lex_state = 23, .external_lex_state = 2}, + [460] = {.lex_state = 24, .external_lex_state = 2}, + [461] = {.lex_state = 23, .external_lex_state = 2}, + [462] = {.lex_state = 24, .external_lex_state = 2}, + [463] = {.lex_state = 24, .external_lex_state = 2}, + [464] = {.lex_state = 24, .external_lex_state = 2}, + [465] = {.lex_state = 24, .external_lex_state = 2}, + [466] = {.lex_state = 23, .external_lex_state = 2}, + [467] = {.lex_state = 23, .external_lex_state = 2}, + [468] = {.lex_state = 23, .external_lex_state = 2}, + [469] = {.lex_state = 24, .external_lex_state = 2}, + [470] = {.lex_state = 24, .external_lex_state = 2}, + [471] = {.lex_state = 23, .external_lex_state = 2}, + [472] = {.lex_state = 23, .external_lex_state = 2}, + [473] = {.lex_state = 24, .external_lex_state = 2}, + [474] = {.lex_state = 23, .external_lex_state = 2}, + [475] = {.lex_state = 24, .external_lex_state = 2}, + [476] = {.lex_state = 3}, + [477] = {.lex_state = 24, .external_lex_state = 2}, + [478] = {.lex_state = 24, .external_lex_state = 2}, + [479] = {.lex_state = 8}, + [480] = {.lex_state = 24, .external_lex_state = 2}, + [481] = {.lex_state = 24, .external_lex_state = 2}, + [482] = {.lex_state = 12}, + [483] = {.lex_state = 24, .external_lex_state = 2}, + [484] = {.lex_state = 24, .external_lex_state = 2}, + [485] = {.lex_state = 24, .external_lex_state = 2}, + [486] = {.lex_state = 24, .external_lex_state = 2}, + [487] = {.lex_state = 24, .external_lex_state = 2}, + [488] = {.lex_state = 12}, + [489] = {.lex_state = 12}, + [490] = {.lex_state = 12}, + [491] = {.lex_state = 55}, + [492] = {.lex_state = 12}, + [493] = {.lex_state = 12}, + [494] = {.lex_state = 12}, + [495] = {.lex_state = 55}, + [496] = {.lex_state = 8}, + [497] = {.lex_state = 3}, + [498] = {.lex_state = 9}, + [499] = {.lex_state = 9}, + [500] = {.lex_state = 3}, + [501] = {.lex_state = 55}, + [502] = {.lex_state = 3}, + [503] = {.lex_state = 3}, + [504] = {.lex_state = 9}, + [505] = {.lex_state = 55}, + [506] = {.lex_state = 3}, + [507] = {.lex_state = 55}, + [508] = {.lex_state = 3}, + [509] = {.lex_state = 8}, + [510] = {.lex_state = 8}, + [511] = {.lex_state = 3}, + [512] = {.lex_state = 55}, + [513] = {.lex_state = 55}, + [514] = {.lex_state = 8}, + [515] = {.lex_state = 8}, + [516] = {.lex_state = 55}, + [517] = {.lex_state = 8}, + [518] = {.lex_state = 9}, + [519] = {.lex_state = 9}, + [520] = {.lex_state = 8}, + [521] = {.lex_state = 9}, + [522] = {.lex_state = 9}, + [523] = {.lex_state = 9}, + [524] = {.lex_state = 0}, + [525] = {.lex_state = 9}, + [526] = {.lex_state = 0}, + [527] = {.lex_state = 9}, + [528] = {.lex_state = 9}, + [529] = {.lex_state = 9}, + [530] = {.lex_state = 9}, + [531] = {.lex_state = 9}, + [532] = {.lex_state = 9}, + [533] = {.lex_state = 9}, + [534] = {.lex_state = 0}, + [535] = {.lex_state = 9}, + [536] = {.lex_state = 9}, + [537] = {.lex_state = 9}, + [538] = {.lex_state = 9}, + [539] = {.lex_state = 9}, + [540] = {.lex_state = 9}, + [541] = {.lex_state = 9}, + [542] = {.lex_state = 9}, + [543] = {.lex_state = 9}, + [544] = {.lex_state = 9}, + [545] = {.lex_state = 9}, + [546] = {.lex_state = 9}, + [547] = {.lex_state = 9}, + [548] = {.lex_state = 9}, + [549] = {.lex_state = 9}, + [550] = {.lex_state = 9}, + [551] = {.lex_state = 9}, + [552] = {.lex_state = 9}, + [553] = {.lex_state = 9}, + [554] = {.lex_state = 9}, + [555] = {.lex_state = 9}, + [556] = {.lex_state = 9}, + [557] = {.lex_state = 9}, + [558] = {.lex_state = 9}, + [559] = {.lex_state = 9}, + [560] = {.lex_state = 9}, + [561] = {.lex_state = 9}, + [562] = {.lex_state = 9}, + [563] = {.lex_state = 9}, + [564] = {.lex_state = 9}, + [565] = {.lex_state = 9}, + [566] = {.lex_state = 9}, + [567] = {.lex_state = 9}, + [568] = {.lex_state = 9}, + [569] = {.lex_state = 9}, + [570] = {.lex_state = 9}, + [571] = {.lex_state = 9}, + [572] = {.lex_state = 9}, + [573] = {.lex_state = 9}, + [574] = {.lex_state = 9}, + [575] = {.lex_state = 9}, + [576] = {.lex_state = 9}, + [577] = {.lex_state = 9}, + [578] = {.lex_state = 9}, + [579] = {.lex_state = 9}, + [580] = {.lex_state = 9}, + [581] = {.lex_state = 9}, + [582] = {.lex_state = 9}, + [583] = {.lex_state = 9}, + [584] = {.lex_state = 9}, + [585] = {.lex_state = 9}, + [586] = {.lex_state = 9}, + [587] = {.lex_state = 9}, + [588] = {.lex_state = 9}, + [589] = {.lex_state = 9}, + [590] = {.lex_state = 9}, + [591] = {.lex_state = 9}, + [592] = {.lex_state = 9}, + [593] = {.lex_state = 9}, + [594] = {.lex_state = 9}, + [595] = {.lex_state = 9}, + [596] = {.lex_state = 9}, + [597] = {.lex_state = 9}, + [598] = {.lex_state = 9}, + [599] = {.lex_state = 9}, + [600] = {.lex_state = 9}, + [601] = {.lex_state = 9}, + [602] = {.lex_state = 9}, + [603] = {.lex_state = 9}, + [604] = {.lex_state = 9}, + [605] = {.lex_state = 9}, + [606] = {.lex_state = 9}, + [607] = {.lex_state = 9}, + [608] = {.lex_state = 9}, + [609] = {.lex_state = 9}, + [610] = {.lex_state = 9}, + [611] = {.lex_state = 9}, + [612] = {.lex_state = 9}, + [613] = {.lex_state = 0}, + [614] = {.lex_state = 9}, + [615] = {.lex_state = 9}, + [616] = {.lex_state = 9}, + [617] = {.lex_state = 9}, + [618] = {.lex_state = 9}, + [619] = {.lex_state = 9}, + [620] = {.lex_state = 9}, + [621] = {.lex_state = 0}, + [622] = {.lex_state = 9}, + [623] = {.lex_state = 9}, + [624] = {.lex_state = 9}, + [625] = {.lex_state = 9}, + [626] = {.lex_state = 9}, + [627] = {.lex_state = 9}, + [628] = {.lex_state = 9}, + [629] = {.lex_state = 9}, + [630] = {.lex_state = 9}, + [631] = {.lex_state = 9}, + [632] = {.lex_state = 9}, + [633] = {.lex_state = 9}, + [634] = {.lex_state = 9}, + [635] = {.lex_state = 9}, + [636] = {.lex_state = 9}, + [637] = {.lex_state = 9}, + [638] = {.lex_state = 9}, + [639] = {.lex_state = 9}, + [640] = {.lex_state = 9}, + [641] = {.lex_state = 23}, + [642] = {.lex_state = 56}, + [643] = {.lex_state = 19}, + [644] = {.lex_state = 22}, + [645] = {.lex_state = 21}, + [646] = {.lex_state = 20}, + [647] = {.lex_state = 56}, + [648] = {.lex_state = 56}, + [649] = {.lex_state = 23}, + [650] = {.lex_state = 19}, + [651] = {.lex_state = 23}, + [652] = {.lex_state = 19}, + [653] = {.lex_state = 22}, + [654] = {.lex_state = 23}, + [655] = {.lex_state = 19}, + [656] = {.lex_state = 22}, + [657] = {.lex_state = 21}, + [658] = {.lex_state = 20}, + [659] = {.lex_state = 22}, + [660] = {.lex_state = 21}, + [661] = {.lex_state = 21}, + [662] = {.lex_state = 20}, + [663] = {.lex_state = 20}, + [664] = {.lex_state = 56}, + [665] = {.lex_state = 56}, + [666] = {.lex_state = 56}, + [667] = {.lex_state = 23}, + [668] = {.lex_state = 19}, + [669] = {.lex_state = 56}, + [670] = {.lex_state = 22}, + [671] = {.lex_state = 21}, + [672] = {.lex_state = 20}, + [673] = {.lex_state = 56}, + [674] = {.lex_state = 56}, + [675] = {.lex_state = 56}, + [676] = {.lex_state = 56}, + [677] = {.lex_state = 56}, + [678] = {.lex_state = 56}, + [679] = {.lex_state = 22}, + [680] = {.lex_state = 20}, + [681] = {.lex_state = 21}, + [682] = {.lex_state = 56}, + [683] = {.lex_state = 23}, + [684] = {.lex_state = 19}, + [685] = {.lex_state = 22}, + [686] = {.lex_state = 21}, + [687] = {.lex_state = 20}, + [688] = {.lex_state = 23}, + [689] = {.lex_state = 19}, + [690] = {.lex_state = 0}, + [691] = {.lex_state = 0}, + [692] = {.lex_state = 0}, + [693] = {.lex_state = 0}, + [694] = {.lex_state = 0}, + [695] = {.lex_state = 0}, + [696] = {.lex_state = 0}, + [697] = {.lex_state = 0}, + [698] = {.lex_state = 24}, + [699] = {.lex_state = 0}, + [700] = {.lex_state = 0}, + [701] = {.lex_state = 0}, + [702] = {.lex_state = 0}, + [703] = {.lex_state = 24}, + [704] = {.lex_state = 0}, + [705] = {.lex_state = 0}, + [706] = {.lex_state = 0}, + [707] = {.lex_state = 0}, + [708] = {.lex_state = 0}, + [709] = {.lex_state = 0}, + [710] = {.lex_state = 0}, + [711] = {.lex_state = 0}, + [712] = {.lex_state = 24}, + [713] = {.lex_state = 24}, + [714] = {.lex_state = 0}, + [715] = {.lex_state = 0}, + [716] = {.lex_state = 0}, + [717] = {.lex_state = 0}, + [718] = {.lex_state = 0}, + [719] = {.lex_state = 0}, + [720] = {.lex_state = 0}, + [721] = {.lex_state = 0}, + [722] = {.lex_state = 0}, + [723] = {.lex_state = 0}, + [724] = {.lex_state = 0}, + [725] = {.lex_state = 0}, + [726] = {.lex_state = 0}, + [727] = {.lex_state = 0}, + [728] = {.lex_state = 0}, + [729] = {.lex_state = 57}, + [730] = {.lex_state = 57}, [731] = {.lex_state = 0}, - [732] = {.lex_state = 9}, + [732] = {.lex_state = 0}, [733] = {.lex_state = 0}, - [734] = {.lex_state = 9}, + [734] = {.lex_state = 0}, [735] = {.lex_state = 0}, - [736] = {.lex_state = 9}, - [737] = {.lex_state = 9}, - [738] = {.lex_state = 9}, - [739] = {.lex_state = 9}, - [740] = {.lex_state = 9}, - [741] = {.lex_state = 9}, - [742] = {.lex_state = 9}, - [743] = {.lex_state = 9}, - [744] = {.lex_state = 9}, - [745] = {.lex_state = 9}, + [736] = {.lex_state = 0}, + [737] = {.lex_state = 24}, + [738] = {.lex_state = 0}, + [739] = {.lex_state = 0}, + [740] = {.lex_state = 24}, + [741] = {.lex_state = 0}, + [742] = {.lex_state = 0}, + [743] = {.lex_state = 24}, + [744] = {.lex_state = 0}, + [745] = {.lex_state = 0}, [746] = {.lex_state = 0}, - [747] = {.lex_state = 9}, - [748] = {.lex_state = 9}, - [749] = {.lex_state = 9}, + [747] = {.lex_state = 57}, + [748] = {.lex_state = 57}, + [749] = {.lex_state = 57}, [750] = {.lex_state = 0}, - [751] = {.lex_state = 9}, - [752] = {.lex_state = 9}, - [753] = {.lex_state = 9}, - [754] = {.lex_state = 9}, - [755] = {.lex_state = 9}, - [756] = {.lex_state = 9}, - [757] = {.lex_state = 9}, - [758] = {.lex_state = 9}, - [759] = {.lex_state = 9}, - [760] = {.lex_state = 9}, - [761] = {.lex_state = 9}, - [762] = {.lex_state = 9}, - [763] = {.lex_state = 9}, - [764] = {.lex_state = 9}, - [765] = {.lex_state = 9}, - [766] = {.lex_state = 9}, - [767] = {.lex_state = 9}, - [768] = {.lex_state = 9}, - [769] = {.lex_state = 9}, - [770] = {.lex_state = 9}, - [771] = {.lex_state = 9}, - [772] = {.lex_state = 9}, - [773] = {.lex_state = 9}, - [774] = {.lex_state = 9}, - [775] = {.lex_state = 9}, - [776] = {.lex_state = 9}, - [777] = {.lex_state = 9}, - [778] = {.lex_state = 9}, - [779] = {.lex_state = 9}, - [780] = {.lex_state = 9}, - [781] = {.lex_state = 9}, - [782] = {.lex_state = 9}, - [783] = {.lex_state = 9}, - [784] = {.lex_state = 9}, - [785] = {.lex_state = 9}, - [786] = {.lex_state = 9}, - [787] = {.lex_state = 9}, - [788] = {.lex_state = 9}, - [789] = {.lex_state = 9}, - [790] = {.lex_state = 9}, - [791] = {.lex_state = 9}, - [792] = {.lex_state = 9}, - [793] = {.lex_state = 9}, - [794] = {.lex_state = 9}, - [795] = {.lex_state = 9}, - [796] = {.lex_state = 56}, - [797] = {.lex_state = 56}, - [798] = {.lex_state = 56}, - [799] = {.lex_state = 56}, - [800] = {.lex_state = 56}, - [801] = {.lex_state = 56}, - [802] = {.lex_state = 56}, - [803] = {.lex_state = 56}, - [804] = {.lex_state = 56}, - [805] = {.lex_state = 56}, - [806] = {.lex_state = 56}, - [807] = {.lex_state = 56}, - [808] = {.lex_state = 56}, - [809] = {.lex_state = 56}, + [751] = {.lex_state = 0}, + [752] = {.lex_state = 0}, + [753] = {.lex_state = 0}, + [754] = {.lex_state = 0}, + [755] = {.lex_state = 24}, + [756] = {.lex_state = 24}, + [757] = {.lex_state = 0}, + [758] = {.lex_state = 0}, + [759] = {.lex_state = 0}, + [760] = {.lex_state = 0}, + [761] = {.lex_state = 0}, + [762] = {.lex_state = 0}, + [763] = {.lex_state = 0}, + [764] = {.lex_state = 0}, + [765] = {.lex_state = 24}, + [766] = {.lex_state = 0}, + [767] = {.lex_state = 0}, + [768] = {.lex_state = 24}, + [769] = {.lex_state = 0}, + [770] = {.lex_state = 57}, + [771] = {.lex_state = 57}, + [772] = {.lex_state = 0}, + [773] = {.lex_state = 0}, + [774] = {.lex_state = 0}, + [775] = {.lex_state = 57}, + [776] = {.lex_state = 0}, + [777] = {.lex_state = 0}, + [778] = {.lex_state = 0}, + [779] = {.lex_state = 24}, + [780] = {.lex_state = 0}, + [781] = {.lex_state = 0}, + [782] = {.lex_state = 0}, + [783] = {.lex_state = 0}, + [784] = {.lex_state = 0}, + [785] = {.lex_state = 0}, + [786] = {.lex_state = 0}, + [787] = {.lex_state = 0}, + [788] = {.lex_state = 0}, + [789] = {.lex_state = 0}, + [790] = {.lex_state = 24}, + [791] = {.lex_state = 24}, + [792] = {.lex_state = 0}, + [793] = {.lex_state = 0}, + [794] = {.lex_state = 57}, + [795] = {.lex_state = 57}, + [796] = {.lex_state = 0}, + [797] = {.lex_state = 0}, + [798] = {.lex_state = 0}, + [799] = {.lex_state = 0}, + [800] = {.lex_state = 0}, + [801] = {.lex_state = 0}, + [802] = {.lex_state = 0}, + [803] = {.lex_state = 0}, + [804] = {.lex_state = 0}, + [805] = {.lex_state = 0}, + [806] = {.lex_state = 0}, + [807] = {.lex_state = 24}, + [808] = {.lex_state = 0}, + [809] = {.lex_state = 0}, [810] = {.lex_state = 24}, - [811] = {.lex_state = 57}, + [811] = {.lex_state = 0}, [812] = {.lex_state = 0}, [813] = {.lex_state = 0}, - [814] = {.lex_state = 24}, + [814] = {.lex_state = 0}, [815] = {.lex_state = 0}, - [816] = {.lex_state = 24}, + [816] = {.lex_state = 0}, [817] = {.lex_state = 0}, - [818] = {.lex_state = 0}, - [819] = {.lex_state = 0}, - [820] = {.lex_state = 57}, - [821] = {.lex_state = 57}, - [822] = {.lex_state = 57}, - [823] = {.lex_state = 24}, - [824] = {.lex_state = 24}, - [825] = {.lex_state = 0}, + [818] = {.lex_state = 57}, + [819] = {.lex_state = 57}, + [820] = {.lex_state = 0}, + [821] = {.lex_state = 0}, + [822] = {.lex_state = 0}, + [823] = {.lex_state = 0}, + [824] = {.lex_state = 0}, + [825] = {.lex_state = 57}, [826] = {.lex_state = 0}, - [827] = {.lex_state = 57}, + [827] = {.lex_state = 0}, [828] = {.lex_state = 0}, [829] = {.lex_state = 0}, [830] = {.lex_state = 0}, - [831] = {.lex_state = 24}, - [832] = {.lex_state = 0}, - [833] = {.lex_state = 0}, - [834] = {.lex_state = 24}, - [835] = {.lex_state = 57}, + [831] = {.lex_state = 0}, + [832] = {.lex_state = 24}, + [833] = {.lex_state = 24}, + [834] = {.lex_state = 0}, + [835] = {.lex_state = 0}, [836] = {.lex_state = 0}, - [837] = {.lex_state = 57}, - [838] = {.lex_state = 57}, - [839] = {.lex_state = 57}, + [837] = {.lex_state = 0}, + [838] = {.lex_state = 0}, + [839] = {.lex_state = 0}, [840] = {.lex_state = 0}, - [841] = {.lex_state = 0}, - [842] = {.lex_state = 0}, - [843] = {.lex_state = 24}, - [844] = {.lex_state = 24}, - [845] = {.lex_state = 24}, - [846] = {.lex_state = 24}, - [847] = {.lex_state = 0}, - [848] = {.lex_state = 57}, + [841] = {.lex_state = 24}, + [842] = {.lex_state = 57}, + [843] = {.lex_state = 57}, + [844] = {.lex_state = 0}, + [845] = {.lex_state = 0}, + [846] = {.lex_state = 0}, + [847] = {.lex_state = 57}, + [848] = {.lex_state = 0}, [849] = {.lex_state = 0}, [850] = {.lex_state = 0}, [851] = {.lex_state = 0}, - [852] = {.lex_state = 24}, - [853] = {.lex_state = 24}, + [852] = {.lex_state = 0}, + [853] = {.lex_state = 0}, [854] = {.lex_state = 0}, [855] = {.lex_state = 0}, [856] = {.lex_state = 0}, - [857] = {.lex_state = 57}, - [858] = {.lex_state = 57}, - [859] = {.lex_state = 0}, + [857] = {.lex_state = 0}, + [858] = {.lex_state = 0}, + [859] = {.lex_state = 57}, [860] = {.lex_state = 0}, - [861] = {.lex_state = 24}, - [862] = {.lex_state = 24}, + [861] = {.lex_state = 0}, + [862] = {.lex_state = 0}, [863] = {.lex_state = 0}, - [864] = {.lex_state = 24}, - [865] = {.lex_state = 24}, - [866] = {.lex_state = 0}, - [867] = {.lex_state = 0}, - [868] = {.lex_state = 0}, - [869] = {.lex_state = 0}, - [870] = {.lex_state = 0}, - [871] = {.lex_state = 0}, - [872] = {.lex_state = 0}, - [873] = {.lex_state = 24}, - [874] = {.lex_state = 0}, - [875] = {.lex_state = 0}, - [876] = {.lex_state = 57}, - [877] = {.lex_state = 57}, - [878] = {.lex_state = 0}, - [879] = {.lex_state = 0}, - [880] = {.lex_state = 24}, - [881] = {.lex_state = 24}, - [882] = {.lex_state = 0}, - [883] = {.lex_state = 0}, - [884] = {.lex_state = 0}, - [885] = {.lex_state = 0}, - [886] = {.lex_state = 0}, - [887] = {.lex_state = 0}, - [888] = {.lex_state = 57}, - [889] = {.lex_state = 0}, - [890] = {.lex_state = 0}, - [891] = {.lex_state = 0}, - [892] = {.lex_state = 57}, - [893] = {.lex_state = 0}, - [894] = {.lex_state = 0}, - [895] = {.lex_state = 0}, - [896] = {.lex_state = 57}, - [897] = {.lex_state = 24}, - [898] = {.lex_state = 0}, - [899] = {.lex_state = 0}, - [900] = {.lex_state = 0}, - [901] = {.lex_state = 0}, -}; - -enum { - ts_external_token_bracket_argument = 0, - ts_external_token_bracket_comment = 1, - ts_external_token_line_comment = 2, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token_bracket_argument] = sym_bracket_argument, - [ts_external_token_bracket_comment] = sym_bracket_comment, - [ts_external_token_line_comment] = sym_line_comment, -}; - -static const bool ts_external_scanner_states[4][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token_bracket_argument] = true, - [ts_external_token_bracket_comment] = true, - [ts_external_token_line_comment] = true, - }, - [2] = { - [ts_external_token_bracket_comment] = true, - [ts_external_token_line_comment] = true, - }, - [3] = { - [ts_external_token_bracket_argument] = true, - }, + [864] = {.lex_state = 0}, + [865] = {.lex_state = 0}, + [866] = {.lex_state = 24}, + [867] = {.lex_state = 24}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -3828,23 +3719,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(889), + [sym_source_file] = STATE(855), [sym_if_command] = STATE(10), - [sym_if_condition] = STATE(266), - [sym_foreach_command] = STATE(194), - [sym_foreach_loop] = STATE(266), - [sym_while_command] = STATE(196), - [sym_while_loop] = STATE(266), - [sym_function_command] = STATE(200), - [sym_function_def] = STATE(266), - [sym_macro_command] = STATE(201), - [sym_macro_def] = STATE(266), - [sym_block_command] = STATE(202), - [sym_block_def] = STATE(266), - [sym_normal_command] = STATE(266), - [sym__command_invocation] = STATE(266), - [sym__untrimmed_command_invocation] = STATE(266), - [aux_sym_source_file_repeat1] = STATE(266), + [sym_if_condition] = STATE(150), + [sym_foreach_command] = STATE(149), + [sym_foreach_loop] = STATE(150), + [sym_while_command] = STATE(119), + [sym_while_loop] = STATE(150), + [sym_function_command] = STATE(154), + [sym_function_def] = STATE(150), + [sym_macro_command] = STATE(152), + [sym_macro_def] = STATE(150), + [sym_block_command] = STATE(151), + [sym_block_def] = STATE(150), + [sym_normal_command] = STATE(150), + [sym__command_invocation] = STATE(150), + [sym__untrimmed_command_invocation] = STATE(150), + [aux_sym_source_file_repeat1] = STATE(150), [ts_builtin_sym_end] = ACTIONS(3), [aux_sym__untrimmed_argument_token1] = ACTIONS(5), [sym_if] = ACTIONS(7), @@ -3860,375 +3751,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 13, + [0] = 20, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, ACTIONS(23), 1, - anon_sym_DOLLAR, + sym_elseif, + ACTIONS(25), 1, + sym_else, ACTIONS(27), 1, - anon_sym_LPAREN, + sym_endif, ACTIONS(29), 1, - anon_sym_RPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + sym_identifier, + STATE(13), 1, + sym_if_command, + STATE(109), 1, + sym_macro_command, + STATE(111), 1, + sym_function_command, + STATE(112), 1, + sym_while_command, + STATE(113), 1, + sym_foreach_command, + STATE(122), 1, + sym_block_command, + STATE(334), 1, + sym_endif_command, + ACTIONS(21), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [59] = 13, + STATE(14), 4, + sym_body, + sym_elseif_command, + sym_else_command, + aux_sym_if_condition_repeat1, + STATE(108), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [75] = 20, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, + sym_elseif, + ACTIONS(25), 1, + sym_else, + ACTIONS(29), 1, + sym_identifier, ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(39), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(37), 3, + sym_endif, + STATE(13), 1, + sym_if_command, + STATE(109), 1, + sym_macro_command, + STATE(111), 1, + sym_function_command, + STATE(112), 1, + sym_while_command, + STATE(113), 1, + sym_foreach_command, + STATE(122), 1, + sym_block_command, + STATE(385), 1, + sym_endif_command, + ACTIONS(21), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(190), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [118] = 13, + STATE(4), 4, + sym_body, + sym_elseif_command, + sym_else_command, + aux_sym_if_condition_repeat1, + STATE(108), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [150] = 20, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, + sym_elseif, + ACTIONS(25), 1, + sym_else, + ACTIONS(29), 1, + sym_identifier, ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(41), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + sym_endif, + STATE(13), 1, + sym_if_command, + STATE(109), 1, + sym_macro_command, + STATE(111), 1, + sym_function_command, + STATE(112), 1, + sym_while_command, + STATE(113), 1, + sym_foreach_command, + STATE(122), 1, + sym_block_command, + STATE(389), 1, + sym_endif_command, + ACTIONS(21), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [177] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(45), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(43), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(108), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [236] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(49), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(47), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(14), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [295] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(41), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(51), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(13), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [354] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(55), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(53), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(22), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [413] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(57), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [472] = 19, + STATE(74), 4, + sym_body, + sym_elseif_command, + sym_else_command, + aux_sym_if_condition_repeat1, + STATE(108), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [225] = 20, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -4241,35 +3929,38 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, ACTIONS(17), 1, sym_block, - ACTIONS(61), 1, + ACTIONS(23), 1, sym_elseif, - ACTIONS(63), 1, + ACTIONS(25), 1, sym_else, - ACTIONS(65), 1, - sym_endif, - ACTIONS(67), 1, + ACTIONS(29), 1, sym_identifier, - STATE(34), 1, + ACTIONS(33), 1, + sym_endif, + STATE(13), 1, sym_if_command, - STATE(207), 1, - sym_foreach_command, - STATE(209), 1, - sym_while_command, - STATE(211), 1, + STATE(109), 1, sym_macro_command, - STATE(213), 1, - sym_block_command, - STATE(231), 1, + STATE(111), 1, sym_function_command, - STATE(549), 1, + STATE(112), 1, + sym_while_command, + STATE(113), 1, + sym_foreach_command, + STATE(122), 1, + sym_block_command, + STATE(353), 1, sym_endif_command, - ACTIONS(59), 3, + ACTIONS(21), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(35), 12, + STATE(74), 4, + sym_body, sym_elseif_command, sym_else_command, + aux_sym_if_condition_repeat1, + STATE(108), 10, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -4279,5386 +3970,5207 @@ static const uint16_t ts_small_parse_table[] = { sym_normal_command, sym__command_invocation, sym__untrimmed_command_invocation, - aux_sym_if_condition_repeat1, - [543] = 13, + aux_sym_source_file_repeat1, + [300] = 20, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, + sym_elseif, + ACTIONS(25), 1, + sym_else, + ACTIONS(29), 1, + sym_identifier, ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(55), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + sym_endif, + STATE(13), 1, + sym_if_command, + STATE(109), 1, + sym_macro_command, + STATE(111), 1, + sym_function_command, + STATE(112), 1, + sym_while_command, + STATE(113), 1, + sym_foreach_command, + STATE(122), 1, + sym_block_command, + STATE(421), 1, + sym_endif_command, + ACTIONS(21), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [602] = 13, + STATE(7), 4, + sym_body, + sym_elseif_command, + sym_else_command, + aux_sym_if_condition_repeat1, + STATE(108), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [375] = 20, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, + sym_elseif, + ACTIONS(25), 1, + sym_else, + ACTIONS(29), 1, + sym_identifier, ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(49), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + sym_endif, + STATE(13), 1, + sym_if_command, + STATE(109), 1, + sym_macro_command, + STATE(111), 1, + sym_function_command, + STATE(112), 1, + sym_while_command, + STATE(113), 1, + sym_foreach_command, + STATE(122), 1, + sym_block_command, + STATE(426), 1, + sym_endif_command, + ACTIONS(21), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [661] = 13, + STATE(74), 4, + sym_body, + sym_elseif_command, + sym_else_command, + aux_sym_if_condition_repeat1, + STATE(108), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [450] = 20, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, + sym_elseif, + ACTIONS(25), 1, + sym_else, + ACTIONS(29), 1, + sym_identifier, ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(69), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + sym_endif, + STATE(13), 1, + sym_if_command, + STATE(109), 1, + sym_macro_command, + STATE(111), 1, + sym_function_command, + STATE(112), 1, + sym_while_command, + STATE(113), 1, + sym_foreach_command, + STATE(122), 1, + sym_block_command, + STATE(349), 1, + sym_endif_command, + ACTIONS(21), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [720] = 13, + STATE(5), 4, + sym_body, + sym_elseif_command, + sym_else_command, + aux_sym_if_condition_repeat1, + STATE(108), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [525] = 20, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(71), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + sym_elseif, + ACTIONS(25), 1, + sym_else, + ACTIONS(29), 1, + sym_identifier, + ACTIONS(37), 1, + sym_endif, + STATE(13), 1, + sym_if_command, + STATE(109), 1, + sym_macro_command, + STATE(111), 1, + sym_function_command, + STATE(112), 1, + sym_while_command, + STATE(113), 1, + sym_foreach_command, + STATE(122), 1, + sym_block_command, + STATE(316), 1, + sym_endif_command, + ACTIONS(21), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [779] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(75), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(73), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(9), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [838] = 13, + STATE(74), 4, + sym_body, + sym_elseif_command, + sym_else_command, + aux_sym_if_condition_repeat1, + STATE(108), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [600] = 20, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(75), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + sym_elseif, + ACTIONS(25), 1, + sym_else, + ACTIONS(29), 1, + sym_identifier, + ACTIONS(39), 1, + sym_endif, + STATE(13), 1, + sym_if_command, + STATE(109), 1, + sym_macro_command, + STATE(111), 1, + sym_function_command, + STATE(112), 1, + sym_while_command, + STATE(113), 1, + sym_foreach_command, + STATE(122), 1, + sym_block_command, + STATE(361), 1, + sym_endif_command, + ACTIONS(21), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [897] = 13, + STATE(15), 4, + sym_body, + sym_elseif_command, + sym_else_command, + aux_sym_if_condition_repeat1, + STATE(108), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [675] = 20, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(79), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(77), 3, + sym_elseif, + ACTIONS(25), 1, + sym_else, + ACTIONS(29), 1, + sym_identifier, + ACTIONS(37), 1, + sym_endif, + STATE(13), 1, + sym_if_command, + STATE(109), 1, + sym_macro_command, + STATE(111), 1, + sym_function_command, + STATE(112), 1, + sym_while_command, + STATE(113), 1, + sym_foreach_command, + STATE(122), 1, + sym_block_command, + STATE(312), 1, + sym_endif_command, + ACTIONS(21), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(59), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [956] = 13, + STATE(9), 4, + sym_body, + sym_elseif_command, + sym_else_command, + aux_sym_if_condition_repeat1, + STATE(108), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [750] = 20, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(81), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + sym_elseif, + ACTIONS(25), 1, + sym_else, + ACTIONS(29), 1, + sym_identifier, + ACTIONS(41), 1, + sym_endif, + STATE(13), 1, + sym_if_command, + STATE(109), 1, + sym_macro_command, + STATE(111), 1, + sym_function_command, + STATE(112), 1, + sym_while_command, + STATE(113), 1, + sym_foreach_command, + STATE(122), 1, + sym_block_command, + STATE(276), 1, + sym_endif_command, + ACTIONS(21), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [1015] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(85), 1, - anon_sym_RPAREN, - STATE(353), 2, + STATE(74), 4, + sym_body, + sym_elseif_command, + sym_else_command, + aux_sym_if_condition_repeat1, + STATE(108), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [825] = 20, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(23), 1, + sym_elseif, + ACTIONS(25), 1, + sym_else, + ACTIONS(29), 1, + sym_identifier, + ACTIONS(41), 1, + sym_endif, + STATE(13), 1, + sym_if_command, + STATE(109), 1, + sym_macro_command, + STATE(111), 1, + sym_function_command, + STATE(112), 1, + sym_while_command, + STATE(113), 1, + sym_foreach_command, + STATE(122), 1, + sym_block_command, + STATE(267), 1, + sym_endif_command, + ACTIONS(21), 3, + sym_bracket_comment, + sym_line_comment, + aux_sym__untrimmed_argument_token1, + STATE(12), 4, + sym_body, + sym_elseif_command, + sym_else_command, + aux_sym_if_condition_repeat1, + STATE(108), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [900] = 20, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(23), 1, + sym_elseif, + ACTIONS(25), 1, + sym_else, + ACTIONS(27), 1, + sym_endif, + ACTIONS(29), 1, + sym_identifier, + STATE(13), 1, + sym_if_command, + STATE(109), 1, + sym_macro_command, + STATE(111), 1, + sym_function_command, + STATE(112), 1, + sym_while_command, + STATE(113), 1, + sym_foreach_command, + STATE(122), 1, + sym_block_command, + STATE(459), 1, + sym_endif_command, + ACTIONS(21), 3, + sym_bracket_comment, + sym_line_comment, + aux_sym__untrimmed_argument_token1, + STATE(74), 4, + sym_body, + sym_elseif_command, + sym_else_command, + aux_sym_if_condition_repeat1, + STATE(108), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [975] = 20, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(23), 1, + sym_elseif, + ACTIONS(25), 1, + sym_else, + ACTIONS(29), 1, + sym_identifier, + ACTIONS(39), 1, + sym_endif, + STATE(13), 1, + sym_if_command, + STATE(109), 1, + sym_macro_command, + STATE(111), 1, + sym_function_command, + STATE(112), 1, + sym_while_command, + STATE(113), 1, + sym_foreach_command, + STATE(122), 1, + sym_block_command, + STATE(341), 1, + sym_endif_command, + ACTIONS(21), 3, + sym_bracket_comment, + sym_line_comment, + aux_sym__untrimmed_argument_token1, + STATE(74), 4, + sym_body, + sym_elseif_command, + sym_else_command, + aux_sym_if_condition_repeat1, + STATE(108), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [1050] = 14, + ACTIONS(45), 1, + anon_sym_DOLLAR, + ACTIONS(49), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(55), 1, + aux_sym__unquoted_text_token1, + ACTIONS(57), 1, + sym_bracket_argument, + STATE(709), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(83), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(64), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [1074] = 13, - ACTIONS(23), 1, + [1112] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(89), 1, + ACTIONS(59), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(821), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(87), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(11), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [1133] = 13, - ACTIONS(23), 1, + [1174] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(93), 1, + ACTIONS(61), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(820), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(91), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(67), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [1192] = 13, - ACTIONS(23), 1, + [1236] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(95), 1, + ACTIONS(63), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(815), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [1251] = 13, - ACTIONS(23), 1, + [1298] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(99), 1, + ACTIONS(65), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(725), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(97), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(70), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [1310] = 19, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(61), 1, - sym_elseif, - ACTIONS(63), 1, - sym_else, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(103), 1, - sym_endif, - STATE(34), 1, - sym_if_command, - STATE(207), 1, - sym_foreach_command, - STATE(209), 1, - sym_while_command, - STATE(211), 1, - sym_macro_command, - STATE(213), 1, - sym_block_command, - STATE(231), 1, - sym_function_command, - STATE(451), 1, - sym_endif_command, - ACTIONS(101), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(52), 12, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_if_condition_repeat1, - [1381] = 13, - ACTIONS(23), 1, + [1360] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(107), 1, + ACTIONS(67), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(814), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(105), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(73), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [1440] = 13, - ACTIONS(23), 1, + [1422] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(111), 1, + ACTIONS(69), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(724), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(109), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(93), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [1499] = 13, - ACTIONS(23), 1, + [1484] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(115), 1, + ACTIONS(71), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(759), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(113), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(76), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [1558] = 13, - ACTIONS(23), 1, + [1546] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(119), 1, + ACTIONS(73), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(858), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(117), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(78), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [1617] = 13, - ACTIONS(23), 1, + [1608] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(123), 1, + ACTIONS(75), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(803), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(121), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(79), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [1676] = 13, - ACTIONS(23), 1, + [1670] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(127), 1, + ACTIONS(77), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(761), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(125), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(12), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [1735] = 13, - ACTIONS(23), 1, + [1732] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(131), 1, + ACTIONS(79), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(851), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(129), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(58), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [1794] = 13, - ACTIONS(23), 1, + [1794] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(135), 1, + ACTIONS(81), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(781), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(133), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(56), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [1853] = 13, - ACTIONS(23), 1, + [1856] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(135), 1, + ACTIONS(83), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(850), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [1912] = 19, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(61), 1, - sym_elseif, - ACTIONS(63), 1, - sym_else, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(139), 1, - sym_endif, - STATE(34), 1, - sym_if_command, - STATE(207), 1, - sym_foreach_command, - STATE(209), 1, - sym_while_command, - STATE(211), 1, - sym_macro_command, - STATE(213), 1, - sym_block_command, - STATE(231), 1, - sym_function_command, - STATE(372), 1, - sym_endif_command, - ACTIONS(137), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(37), 12, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_if_condition_repeat1, - [1983] = 19, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(61), 1, - sym_elseif, - ACTIONS(63), 1, - sym_else, - ACTIONS(65), 1, - sym_endif, - ACTIONS(67), 1, - sym_identifier, - STATE(34), 1, - sym_if_command, - STATE(207), 1, - sym_foreach_command, - STATE(209), 1, - sym_while_command, - STATE(211), 1, - sym_macro_command, - STATE(213), 1, - sym_block_command, - STATE(231), 1, - sym_function_command, - STATE(618), 1, - sym_endif_command, - ACTIONS(141), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(191), 12, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_if_condition_repeat1, - [2054] = 13, - ACTIONS(23), 1, + [1918] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(145), 1, + ACTIONS(85), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(780), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(143), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(38), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [2113] = 19, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(61), 1, - sym_elseif, - ACTIONS(63), 1, - sym_else, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(139), 1, - sym_endif, - STATE(34), 1, - sym_if_command, - STATE(207), 1, - sym_foreach_command, - STATE(209), 1, - sym_while_command, - STATE(211), 1, - sym_macro_command, - STATE(213), 1, - sym_block_command, - STATE(231), 1, - sym_function_command, - STATE(382), 1, - sym_endif_command, - ACTIONS(141), 3, + [1980] = 14, + ACTIONS(45), 1, + anon_sym_DOLLAR, + ACTIONS(49), 1, + anon_sym_LPAREN, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(55), 1, + aux_sym__unquoted_text_token1, + ACTIONS(57), 1, + sym_bracket_argument, + ACTIONS(87), 1, + anon_sym_RPAREN, + STATE(839), 1, + sym_argument_list, + STATE(240), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(241), 2, + sym__escape_encoded, + sym__escape_semicolon, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(191), 12, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_if_condition_repeat1, - [2184] = 13, - ACTIONS(23), 1, + STATE(246), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + STATE(99), 4, + sym_argument, + sym__untrimmed_argument, + sym__paren_argument, + aux_sym__paren_argument_repeat1, + ACTIONS(43), 6, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + STATE(163), 6, + sym_escape_sequence, + sym_variable_ref, + sym_gen_exp, + sym__unquoted_text, + aux_sym_unquoted_argument_repeat1, + aux_sym__unquoted_text_repeat1, + [2042] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(147), 1, + ACTIONS(89), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(777), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [2243] = 13, - ACTIONS(23), 1, + [2104] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(147), 1, + ACTIONS(91), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(836), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(149), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(48), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [2302] = 13, - ACTIONS(23), 1, + [2166] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(153), 1, + ACTIONS(93), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(691), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(151), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(49), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [2361] = 13, - ACTIONS(23), 1, + [2228] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(157), 1, + ACTIONS(95), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(731), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(155), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(4), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [2420] = 19, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(61), 1, - sym_elseif, - ACTIONS(63), 1, - sym_else, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(159), 1, - sym_endif, - STATE(34), 1, - sym_if_command, - STATE(207), 1, - sym_foreach_command, - STATE(209), 1, - sym_while_command, - STATE(211), 1, - sym_macro_command, - STATE(213), 1, - sym_block_command, - STATE(231), 1, - sym_function_command, - STATE(546), 1, - sym_endif_command, - ACTIONS(141), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(191), 12, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_if_condition_repeat1, - [2491] = 13, - ACTIONS(23), 1, + [2290] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(163), 1, + ACTIONS(97), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(862), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(161), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(33), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [2550] = 13, - ACTIONS(23), 1, + [2352] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(167), 1, + ACTIONS(99), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(767), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(165), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(57), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [2609] = 13, - ACTIONS(23), 1, + [2414] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(171), 1, + ACTIONS(101), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(846), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(169), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(72), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [2668] = 13, - ACTIONS(23), 1, + [2476] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(175), 1, + ACTIONS(103), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(766), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(173), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(89), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [2727] = 13, - ACTIONS(23), 1, + [2538] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(179), 1, + ACTIONS(105), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(835), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(177), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(131), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [2786] = 13, - ACTIONS(23), 1, + [2600] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(181), 1, + ACTIONS(107), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(834), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [2845] = 13, - ACTIONS(23), 1, + [2662] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(183), 1, + ACTIONS(109), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(830), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [2904] = 13, - ACTIONS(23), 1, + [2724] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(183), 1, + ACTIONS(111), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(693), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(185), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(110), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [2963] = 13, - ACTIONS(23), 1, + [2786] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(189), 1, + ACTIONS(113), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(694), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(187), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(16), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [3022] = 19, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(61), 1, - sym_elseif, - ACTIONS(63), 1, - sym_else, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(103), 1, - sym_endif, - STATE(34), 1, - sym_if_command, - STATE(207), 1, - sym_foreach_command, - STATE(209), 1, - sym_while_command, - STATE(211), 1, - sym_macro_command, - STATE(213), 1, - sym_block_command, - STATE(231), 1, - sym_function_command, - STATE(460), 1, - sym_endif_command, - ACTIONS(141), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(191), 12, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_if_condition_repeat1, - [3093] = 19, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(61), 1, - sym_elseif, - ACTIONS(63), 1, - sym_else, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(159), 1, - sym_endif, - STATE(34), 1, - sym_if_command, - STATE(207), 1, - sym_foreach_command, - STATE(209), 1, - sym_while_command, - STATE(211), 1, - sym_macro_command, - STATE(213), 1, - sym_block_command, - STATE(231), 1, - sym_function_command, - STATE(563), 1, - sym_endif_command, - ACTIONS(191), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(42), 12, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_if_condition_repeat1, - [3164] = 13, - ACTIONS(23), 1, + [2848] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(195), 1, + ACTIONS(115), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(829), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(193), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(18), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [3223] = 13, - ACTIONS(23), 1, + [2910] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(199), 1, + ACTIONS(117), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(828), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(197), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(109), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [3282] = 13, - ACTIONS(23), 1, + [2972] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(201), 1, + ACTIONS(119), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(741), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [3341] = 13, - ACTIONS(23), 1, + [3034] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(203), 1, + ACTIONS(121), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(813), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [3400] = 13, - ACTIONS(23), 1, + [3096] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(205), 1, + ACTIONS(123), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(742), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [3459] = 13, - ACTIONS(23), 1, + [3158] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(207), 1, + ACTIONS(125), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(723), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [3518] = 13, - ACTIONS(23), 1, + [3220] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(203), 1, + ACTIONS(127), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(695), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(209), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(116), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [3577] = 13, - ACTIONS(23), 1, + [3282] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(207), 1, + ACTIONS(129), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(699), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(211), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(118), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [3636] = 13, - ACTIONS(23), 1, + [3344] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(205), 1, + ACTIONS(131), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(738), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(213), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(163), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [3695] = 13, - ACTIONS(23), 1, + [3406] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(215), 1, + ACTIONS(133), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(700), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [3754] = 13, - ACTIONS(23), 1, + [3468] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(217), 1, + ACTIONS(135), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(726), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [3813] = 13, - ACTIONS(23), 1, + [3530] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(217), 1, + ACTIONS(137), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(701), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(219), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(120), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [3872] = 13, - ACTIONS(23), 1, + [3592] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(221), 1, + ACTIONS(139), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(704), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [3931] = 13, - ACTIONS(23), 1, + [3654] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(223), 1, + ACTIONS(141), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(752), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [3990] = 13, - ACTIONS(23), 1, + [3716] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(223), 1, + ACTIONS(143), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(707), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(225), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(122), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [4049] = 13, - ACTIONS(23), 1, + [3778] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(227), 1, + ACTIONS(145), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(811), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [4108] = 13, - ACTIONS(23), 1, + [3840] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(229), 1, + ACTIONS(147), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(837), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [4167] = 13, - ACTIONS(23), 1, + [3902] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(229), 1, + ACTIONS(149), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(809), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(231), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(124), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [4226] = 13, - ACTIONS(23), 1, + [3964] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(233), 1, + ACTIONS(151), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(817), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [4285] = 13, - ACTIONS(23), 1, + [4026] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(235), 1, + ACTIONS(153), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(711), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [4344] = 13, - ACTIONS(23), 1, + [4088] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(235), 1, + ACTIONS(155), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(753), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(237), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(126), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [4403] = 13, - ACTIONS(23), 1, + [4150] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(239), 1, + ACTIONS(157), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(710), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [4462] = 13, - ACTIONS(23), 1, + [4212] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(241), 1, + ACTIONS(159), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(754), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [4521] = 13, - ACTIONS(23), 1, + [4274] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(241), 1, + ACTIONS(161), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(715), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(243), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(128), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [4580] = 13, - ACTIONS(23), 1, + [4336] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(245), 1, + ACTIONS(163), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(706), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [4639] = 13, - ACTIONS(23), 1, + [4398] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(247), 1, + ACTIONS(165), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(716), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [4698] = 13, - ACTIONS(23), 1, + [4460] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(247), 1, + ACTIONS(167), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(702), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(249), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(130), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [4757] = 13, - ACTIONS(23), 1, + [4522] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(253), 1, + ACTIONS(169), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(717), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(251), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(132), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [4816] = 13, - ACTIONS(23), 1, + [4584] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(245), 1, + ACTIONS(171), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(805), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(255), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(164), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [4875] = 13, - ACTIONS(23), 1, + [4646] = 19, + ACTIONS(176), 1, + sym_if, + ACTIONS(179), 1, + sym_elseif, + ACTIONS(182), 1, + sym_else, + ACTIONS(185), 1, + sym_endif, + ACTIONS(187), 1, + sym_foreach, + ACTIONS(190), 1, + sym_while, + ACTIONS(193), 1, + sym_function, + ACTIONS(196), 1, + sym_macro, + ACTIONS(199), 1, + sym_block, + ACTIONS(202), 1, + sym_identifier, + STATE(13), 1, + sym_if_command, + STATE(109), 1, + sym_macro_command, + STATE(111), 1, + sym_function_command, + STATE(112), 1, + sym_while_command, + STATE(113), 1, + sym_foreach_command, + STATE(122), 1, + sym_block_command, + ACTIONS(173), 3, + sym_bracket_comment, + sym_line_comment, + aux_sym__untrimmed_argument_token1, + STATE(74), 4, + sym_body, + sym_elseif_command, + sym_else_command, + aux_sym_if_condition_repeat1, + STATE(108), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [4718] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(259), 1, + ACTIONS(205), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(802), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(257), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(135), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [4934] = 13, - ACTIONS(23), 1, + [4780] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(263), 1, + ACTIONS(207), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(800), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(261), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(63), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [4993] = 13, - ACTIONS(23), 1, + [4842] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(267), 1, + ACTIONS(209), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(757), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(265), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(138), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [5052] = 13, - ACTIONS(23), 1, + [4904] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(263), 1, + ACTIONS(211), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(758), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [5111] = 13, - ACTIONS(23), 1, + [4966] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(271), 1, + ACTIONS(213), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(760), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(269), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(66), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [5170] = 13, - ACTIONS(23), 1, + [5028] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(233), 1, + ACTIONS(215), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(763), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(273), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(2), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [5229] = 13, - ACTIONS(23), 1, + [5090] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(275), 1, + ACTIONS(217), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(772), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [5288] = 13, - ACTIONS(23), 1, + [5152] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(271), 1, + ACTIONS(219), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(796), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [5347] = 13, - ACTIONS(23), 1, + [5214] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(279), 1, + ACTIONS(221), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(788), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(277), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(69), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [5406] = 13, - ACTIONS(23), 1, + [5276] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(279), 1, + ACTIONS(223), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(776), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [5465] = 13, - ACTIONS(23), 1, + [5338] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(281), 1, + ACTIONS(225), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(773), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [5524] = 13, - ACTIONS(23), 1, + [5400] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(275), 1, + ACTIONS(227), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(739), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(283), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(119), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [5583] = 13, - ACTIONS(23), 1, + [5462] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(287), 1, + ACTIONS(229), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(786), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(285), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(147), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [5642] = 13, - ACTIONS(23), 1, + [5524] = 14, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(289), 1, + ACTIONS(231), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(787), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [5701] = 13, - ACTIONS(23), 1, + [5586] = 13, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(281), 1, - anon_sym_RPAREN, - STATE(353), 2, + STATE(721), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(291), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(165), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [5760] = 13, - ACTIONS(23), 1, + [5645] = 13, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(295), 1, + ACTIONS(235), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(293), 3, + ACTIONS(233), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(150), 4, + STATE(95), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [5819] = 13, - ACTIONS(23), 1, + [5704] = 13, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(297), 1, - anon_sym_RPAREN, - STATE(353), 2, + STATE(727), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [5878] = 13, - ACTIONS(23), 1, + [5763] = 13, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(301), 1, - anon_sym_RPAREN, - STATE(353), 2, + STATE(801), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(299), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(75), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [5937] = 13, - ACTIONS(23), 1, + [5822] = 13, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(305), 1, - anon_sym_RPAREN, - STATE(353), 2, + STATE(799), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(303), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(153), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [5996] = 13, - ACTIONS(23), 1, + [5881] = 13, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(307), 1, - anon_sym_RPAREN, - STATE(353), 2, + STATE(798), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [6055] = 13, - ACTIONS(23), 1, + [5940] = 13, + ACTIONS(240), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(246), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(249), 1, + anon_sym_RPAREN, + ACTIONS(251), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(254), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(257), 1, sym_bracket_argument, - ACTIONS(301), 1, - anon_sym_RPAREN, - STATE(353), 2, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(243), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(95), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(237), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [6114] = 13, - ACTIONS(23), 1, + [5999] = 13, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(309), 1, - anon_sym_RPAREN, - STATE(353), 2, + STATE(797), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [6173] = 13, - ACTIONS(23), 1, + [6058] = 13, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(311), 1, - anon_sym_RPAREN, - STATE(353), 2, + STATE(792), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [6232] = 13, - ACTIONS(23), 1, + [6117] = 13, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(315), 1, + ACTIONS(262), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(313), 3, + ACTIONS(260), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(96), 4, + STATE(90), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [6291] = 13, - ACTIONS(23), 1, + [6176] = 13, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(195), 1, + ACTIONS(264), 1, anon_sym_RPAREN, - STATE(353), 2, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(233), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(95), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [6350] = 13, - ACTIONS(23), 1, + [6235] = 13, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(317), 1, - anon_sym_RPAREN, - STATE(353), 2, + STATE(734), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [6409] = 13, - ACTIONS(23), 1, + [6294] = 13, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(319), 1, - anon_sym_RPAREN, - STATE(353), 2, + STATE(793), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [6468] = 13, - ACTIONS(23), 1, + [6353] = 13, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(321), 1, - anon_sym_RPAREN, - STATE(353), 2, + STATE(732), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [6527] = 13, - ACTIONS(23), 1, + [6412] = 13, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(325), 1, - anon_sym_RPAREN, - STATE(353), 2, + STATE(722), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(323), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(86), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [6586] = 13, - ACTIONS(23), 1, + [6471] = 13, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(315), 1, - anon_sym_RPAREN, - STATE(353), 2, + STATE(720), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(115), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [6645] = 13, - ACTIONS(23), 1, + [6530] = 13, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(329), 1, - anon_sym_RPAREN, - STATE(353), 2, + STATE(708), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(327), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(90), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [6704] = 13, - ACTIONS(23), 1, + [6589] = 13, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(27), 1, + ACTIONS(49), 1, anon_sym_LPAREN, - ACTIONS(31), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(33), 1, + ACTIONS(55), 1, aux_sym__unquoted_text_token1, - ACTIONS(35), 1, + ACTIONS(57), 1, sym_bracket_argument, - ACTIONS(333), 1, - anon_sym_RPAREN, - STATE(353), 2, + STATE(816), 1, + sym_argument_list, + STATE(240), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(359), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(331), 3, + ACTIONS(47), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - STATE(92), 4, + STATE(99), 4, sym_argument, sym__untrimmed_argument, sym__paren_argument, aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(273), 6, + STATE(163), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [6763] = 13, - ACTIONS(338), 1, - anon_sym_DOLLAR, - ACTIONS(344), 1, - anon_sym_LPAREN, - ACTIONS(347), 1, - anon_sym_RPAREN, - ACTIONS(349), 1, - anon_sym_DQUOTE, - ACTIONS(352), 1, - aux_sym__unquoted_text_token1, - ACTIONS(355), 1, - sym_bracket_argument, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(341), 3, + [6648] = 16, + ACTIONS(269), 1, + sym_if, + ACTIONS(274), 1, + sym_foreach, + ACTIONS(277), 1, + sym_while, + ACTIONS(280), 1, + sym_function, + ACTIONS(283), 1, + sym_macro, + ACTIONS(286), 1, + sym_block, + ACTIONS(289), 1, + sym_identifier, + STATE(13), 1, + sym_if_command, + STATE(109), 1, + sym_macro_command, + STATE(111), 1, + sym_function_command, + STATE(112), 1, + sym_while_command, + STATE(113), 1, + sym_foreach_command, + STATE(122), 1, + sym_block_command, + ACTIONS(266), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(335), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [6822] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(358), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + ACTIONS(272), 3, + sym_elseif, + sym_else, + sym_endif, + STATE(107), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [6710] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(29), 1, + sym_identifier, + STATE(13), 1, + sym_if_command, + STATE(109), 1, + sym_macro_command, + STATE(111), 1, + sym_function_command, + STATE(112), 1, + sym_while_command, + STATE(113), 1, + sym_foreach_command, + STATE(122), 1, + sym_block_command, + ACTIONS(292), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [6881] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(317), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(360), 3, + ACTIONS(294), 3, + sym_elseif, + sym_else, + sym_endif, + STATE(107), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [6772] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(298), 1, + sym_identifier, + STATE(3), 1, + sym_if_command, + STATE(110), 1, + sym_macro_command, + STATE(124), 1, + sym_while_command, + STATE(125), 1, + sym_function_command, + STATE(137), 1, + sym_block_command, + STATE(145), 1, + sym_foreach_command, + STATE(645), 1, + sym_body, + ACTIONS(296), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(166), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [6940] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(362), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + STATE(130), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [6832] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(298), 1, + sym_identifier, + STATE(3), 1, + sym_if_command, + STATE(110), 1, + sym_macro_command, + STATE(124), 1, + sym_while_command, + STATE(125), 1, + sym_function_command, + STATE(137), 1, + sym_block_command, + STATE(145), 1, + sym_foreach_command, + STATE(657), 1, + sym_body, + ACTIONS(296), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [6999] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(364), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + STATE(130), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [6892] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(302), 1, + sym_identifier, + STATE(8), 1, + sym_if_command, + STATE(114), 1, + sym_foreach_command, + STATE(115), 1, + sym_while_command, + STATE(116), 1, + sym_function_command, + STATE(117), 1, + sym_macro_command, + STATE(118), 1, + sym_block_command, + STATE(644), 1, + sym_body, + ACTIONS(300), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [7058] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(366), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + STATE(155), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [6952] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(306), 1, + sym_identifier, + STATE(11), 1, + sym_if_command, + STATE(126), 1, + sym_block_command, + STATE(131), 1, + sym_macro_command, + STATE(135), 1, + sym_function_command, + STATE(146), 1, + sym_while_command, + STATE(147), 1, + sym_foreach_command, + STATE(643), 1, + sym_body, + ACTIONS(304), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [7117] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(370), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(368), 3, + STATE(129), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7012] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(310), 1, + sym_identifier, + STATE(2), 1, + sym_if_command, + STATE(121), 1, + sym_function_command, + STATE(128), 1, + sym_block_command, + STATE(132), 1, + sym_macro_command, + STATE(139), 1, + sym_foreach_command, + STATE(144), 1, + sym_while_command, + STATE(688), 1, + sym_body, + ACTIONS(308), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(103), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [7176] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(372), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [7235] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(376), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(374), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(104), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [7294] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(378), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [7353] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(376), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [7412] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(380), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [7471] = 19, + STATE(148), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7072] = 16, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -9671,35 +9183,27 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, ACTIONS(17), 1, sym_block, - ACTIONS(61), 1, - sym_elseif, - ACTIONS(63), 1, - sym_else, - ACTIONS(67), 1, + ACTIONS(310), 1, sym_identifier, - ACTIONS(382), 1, - sym_endif, - STATE(34), 1, + STATE(2), 1, sym_if_command, - STATE(207), 1, + STATE(121), 1, + sym_function_command, + STATE(128), 1, + sym_block_command, + STATE(132), 1, + sym_macro_command, + STATE(139), 1, sym_foreach_command, - STATE(209), 1, + STATE(144), 1, sym_while_command, - STATE(211), 1, - sym_macro_command, - STATE(213), 1, - sym_block_command, - STATE(231), 1, - sym_function_command, - STATE(421), 1, - sym_endif_command, - ACTIONS(141), 3, + STATE(641), 1, + sym_body, + ACTIONS(308), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(191), 12, - sym_elseif_command, - sym_else_command, + STATE(148), 10, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -9709,54 +9213,52 @@ static const uint16_t ts_small_parse_table[] = { sym_normal_command, sym__command_invocation, sym__untrimmed_command_invocation, - aux_sym_if_condition_repeat1, - [7542] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(384), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + aux_sym_source_file_repeat1, + [7132] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(306), 1, + sym_identifier, + STATE(11), 1, + sym_if_command, + STATE(126), 1, + sym_block_command, + STATE(131), 1, + sym_macro_command, + STATE(135), 1, + sym_function_command, + STATE(146), 1, + sym_while_command, + STATE(147), 1, + sym_foreach_command, + STATE(689), 1, + sym_body, + ACTIONS(304), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [7601] = 19, + STATE(129), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7192] = 16, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -9769,35 +9271,71 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, ACTIONS(17), 1, sym_block, - ACTIONS(61), 1, - sym_elseif, - ACTIONS(63), 1, - sym_else, - ACTIONS(67), 1, + ACTIONS(302), 1, sym_identifier, - ACTIONS(388), 1, - sym_endif, - STATE(34), 1, + STATE(8), 1, sym_if_command, - STATE(207), 1, + STATE(114), 1, sym_foreach_command, - STATE(209), 1, + STATE(115), 1, sym_while_command, - STATE(211), 1, + STATE(116), 1, + sym_function_command, + STATE(117), 1, sym_macro_command, - STATE(213), 1, + STATE(118), 1, sym_block_command, - STATE(231), 1, + STATE(679), 1, + sym_body, + ACTIONS(300), 3, + sym_bracket_comment, + sym_line_comment, + aux_sym__untrimmed_argument_token1, + STATE(155), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7252] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(298), 1, + sym_identifier, + STATE(3), 1, + sym_if_command, + STATE(110), 1, + sym_macro_command, + STATE(124), 1, + sym_while_command, + STATE(125), 1, sym_function_command, - STATE(511), 1, - sym_endif_command, - ACTIONS(386), 3, + STATE(137), 1, + sym_block_command, + STATE(145), 1, + sym_foreach_command, + STATE(681), 1, + sym_body, + ACTIONS(296), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(137), 12, - sym_elseif_command, - sym_else_command, + STATE(130), 10, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -9807,330 +9345,272 @@ static const uint16_t ts_small_parse_table[] = { sym_normal_command, sym__command_invocation, sym__untrimmed_command_invocation, - aux_sym_if_condition_repeat1, - [7672] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(390), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + aux_sym_source_file_repeat1, + [7312] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(314), 1, + sym_identifier, + STATE(6), 1, + sym_if_command, + STATE(138), 1, + sym_foreach_command, + STATE(140), 1, + sym_while_command, + STATE(141), 1, + sym_function_command, + STATE(142), 1, + sym_macro_command, + STATE(143), 1, + sym_block_command, + STATE(680), 1, + sym_body, + ACTIONS(312), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [7731] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(392), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + STATE(153), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7372] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(306), 1, + sym_identifier, + STATE(11), 1, + sym_if_command, + STATE(126), 1, + sym_block_command, + STATE(131), 1, + sym_macro_command, + STATE(135), 1, + sym_function_command, + STATE(146), 1, + sym_while_command, + STATE(147), 1, + sym_foreach_command, + STATE(652), 1, + sym_body, + ACTIONS(304), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [7790] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(394), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + STATE(129), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7432] = 16, + ACTIONS(269), 1, + sym_if, + ACTIONS(272), 1, + sym_endwhile, + ACTIONS(274), 1, + sym_foreach, + ACTIONS(277), 1, + sym_while, + ACTIONS(280), 1, + sym_function, + ACTIONS(283), 1, + sym_macro, + ACTIONS(286), 1, + sym_block, + ACTIONS(319), 1, + sym_identifier, + STATE(11), 1, + sym_if_command, + STATE(126), 1, + sym_block_command, + STATE(131), 1, + sym_macro_command, + STATE(135), 1, + sym_function_command, + STATE(146), 1, + sym_while_command, + STATE(147), 1, + sym_foreach_command, + ACTIONS(316), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [7849] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(394), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(396), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(175), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [7908] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(400), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(398), 3, + STATE(120), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7492] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(302), 1, + sym_identifier, + STATE(8), 1, + sym_if_command, + STATE(114), 1, + sym_foreach_command, + STATE(115), 1, + sym_while_command, + STATE(116), 1, + sym_function_command, + STATE(117), 1, + sym_macro_command, + STATE(118), 1, + sym_block_command, + STATE(653), 1, + sym_body, + ACTIONS(300), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(142), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [7967] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(402), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + STATE(155), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7552] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(314), 1, + sym_identifier, + STATE(6), 1, + sym_if_command, + STATE(138), 1, + sym_foreach_command, + STATE(140), 1, + sym_while_command, + STATE(141), 1, + sym_function_command, + STATE(142), 1, + sym_macro_command, + STATE(143), 1, + sym_block_command, + STATE(646), 1, + sym_body, + ACTIONS(312), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [8026] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(402), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(404), 3, + STATE(153), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7612] = 16, + ACTIONS(269), 1, + sym_if, + ACTIONS(272), 1, + sym_endblock, + ACTIONS(274), 1, + sym_foreach, + ACTIONS(277), 1, + sym_while, + ACTIONS(280), 1, + sym_function, + ACTIONS(283), 1, + sym_macro, + ACTIONS(286), 1, + sym_block, + ACTIONS(325), 1, + sym_identifier, + STATE(6), 1, + sym_if_command, + STATE(138), 1, + sym_foreach_command, + STATE(140), 1, + sym_while_command, + STATE(141), 1, + sym_function_command, + STATE(142), 1, + sym_macro_command, + STATE(143), 1, + sym_block_command, + ACTIONS(322), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(177), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [8085] = 19, + STATE(123), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7672] = 16, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -10143,35 +9623,27 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, ACTIONS(17), 1, sym_block, - ACTIONS(61), 1, - sym_elseif, - ACTIONS(63), 1, - sym_else, - ACTIONS(67), 1, + ACTIONS(306), 1, sym_identifier, - ACTIONS(388), 1, - sym_endif, - STATE(34), 1, + STATE(11), 1, sym_if_command, - STATE(207), 1, - sym_foreach_command, - STATE(209), 1, - sym_while_command, - STATE(211), 1, - sym_macro_command, - STATE(213), 1, + STATE(126), 1, sym_block_command, - STATE(231), 1, + STATE(131), 1, + sym_macro_command, + STATE(135), 1, sym_function_command, - STATE(503), 1, - sym_endif_command, - ACTIONS(141), 3, + STATE(146), 1, + sym_while_command, + STATE(147), 1, + sym_foreach_command, + STATE(655), 1, + sym_body, + ACTIONS(304), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(191), 12, - sym_elseif_command, - sym_else_command, + STATE(129), 10, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -10181,238 +9653,52 @@ static const uint16_t ts_small_parse_table[] = { sym_normal_command, sym__command_invocation, sym__untrimmed_command_invocation, - aux_sym_if_condition_repeat1, - [8156] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(406), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [8215] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(406), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(408), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(179), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [8274] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(392), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(410), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(182), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [8333] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(414), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(412), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(99), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [8392] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(416), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + aux_sym_source_file_repeat1, + [7732] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(302), 1, + sym_identifier, + STATE(8), 1, + sym_if_command, + STATE(114), 1, + sym_foreach_command, + STATE(115), 1, + sym_while_command, + STATE(116), 1, + sym_function_command, + STATE(117), 1, + sym_macro_command, + STATE(118), 1, + sym_block_command, + STATE(656), 1, + sym_body, + ACTIONS(300), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [8451] = 19, + STATE(155), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7792] = 16, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -10425,35 +9711,27 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, ACTIONS(17), 1, sym_block, - ACTIONS(61), 1, - sym_elseif, - ACTIONS(63), 1, - sym_else, - ACTIONS(67), 1, + ACTIONS(314), 1, sym_identifier, - ACTIONS(418), 1, - sym_endif, - STATE(34), 1, + STATE(6), 1, sym_if_command, - STATE(207), 1, + STATE(138), 1, sym_foreach_command, - STATE(209), 1, + STATE(140), 1, sym_while_command, - STATE(211), 1, + STATE(141), 1, + sym_function_command, + STATE(142), 1, sym_macro_command, - STATE(213), 1, + STATE(143), 1, sym_block_command, - STATE(231), 1, - sym_function_command, - STATE(630), 1, - sym_endif_command, - ACTIONS(141), 3, + STATE(672), 1, + sym_body, + ACTIONS(312), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(191), 12, - sym_elseif_command, - sym_else_command, + STATE(153), 10, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -10463,1204 +9741,976 @@ static const uint16_t ts_small_parse_table[] = { sym_normal_command, sym__command_invocation, sym__untrimmed_command_invocation, - aux_sym_if_condition_repeat1, - [8522] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(416), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(420), 3, + aux_sym_source_file_repeat1, + [7852] = 16, + ACTIONS(269), 1, + sym_if, + ACTIONS(272), 1, + sym_endmacro, + ACTIONS(274), 1, + sym_foreach, + ACTIONS(277), 1, + sym_while, + ACTIONS(280), 1, + sym_function, + ACTIONS(283), 1, + sym_macro, + ACTIONS(286), 1, + sym_block, + ACTIONS(331), 1, + sym_identifier, + STATE(3), 1, + sym_if_command, + STATE(110), 1, + sym_macro_command, + STATE(124), 1, + sym_while_command, + STATE(125), 1, + sym_function_command, + STATE(137), 1, + sym_block_command, + STATE(145), 1, + sym_foreach_command, + ACTIONS(328), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(172), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [8581] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(414), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + STATE(127), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7912] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(314), 1, + sym_identifier, + STATE(6), 1, + sym_if_command, + STATE(138), 1, + sym_foreach_command, + STATE(140), 1, + sym_while_command, + STATE(141), 1, + sym_function_command, + STATE(142), 1, + sym_macro_command, + STATE(143), 1, + sym_block_command, + STATE(662), 1, + sym_body, + ACTIONS(312), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [8640] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(424), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(422), 3, + STATE(153), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [7972] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(294), 1, + sym_endwhile, + ACTIONS(306), 1, + sym_identifier, + STATE(11), 1, + sym_if_command, + STATE(126), 1, + sym_block_command, + STATE(131), 1, + sym_macro_command, + STATE(135), 1, + sym_function_command, + STATE(146), 1, + sym_while_command, + STATE(147), 1, + sym_foreach_command, + ACTIONS(334), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(125), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [8699] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(426), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + STATE(120), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8032] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(294), 1, + sym_endmacro, + ACTIONS(298), 1, + sym_identifier, + STATE(3), 1, + sym_if_command, + STATE(110), 1, + sym_macro_command, + STATE(124), 1, + sym_while_command, + STATE(125), 1, + sym_function_command, + STATE(137), 1, + sym_block_command, + STATE(145), 1, + sym_foreach_command, + ACTIONS(336), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [8758] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(426), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(428), 3, + STATE(127), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8092] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(298), 1, + sym_identifier, + STATE(3), 1, + sym_if_command, + STATE(110), 1, + sym_macro_command, + STATE(124), 1, + sym_while_command, + STATE(125), 1, + sym_function_command, + STATE(137), 1, + sym_block_command, + STATE(145), 1, + sym_foreach_command, + STATE(671), 1, + sym_body, + ACTIONS(296), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(186), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [8817] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(432), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(430), 3, + STATE(130), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8152] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(298), 1, + sym_identifier, + STATE(3), 1, + sym_if_command, + STATE(110), 1, + sym_macro_command, + STATE(124), 1, + sym_while_command, + STATE(125), 1, + sym_function_command, + STATE(137), 1, + sym_block_command, + STATE(145), 1, + sym_foreach_command, + STATE(661), 1, + sym_body, + ACTIONS(296), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(183), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [8876] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(434), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + STATE(130), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8212] = 16, + ACTIONS(269), 1, + sym_if, + ACTIONS(272), 1, + sym_endfunction, + ACTIONS(274), 1, + sym_foreach, + ACTIONS(277), 1, + sym_while, + ACTIONS(280), 1, + sym_function, + ACTIONS(283), 1, + sym_macro, + ACTIONS(286), 1, + sym_block, + ACTIONS(341), 1, + sym_identifier, + STATE(8), 1, + sym_if_command, + STATE(114), 1, + sym_foreach_command, + STATE(115), 1, + sym_while_command, + STATE(116), 1, + sym_function_command, + STATE(117), 1, + sym_macro_command, + STATE(118), 1, + sym_block_command, + ACTIONS(338), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [8935] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(434), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(436), 3, + STATE(133), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8272] = 16, + ACTIONS(269), 1, + sym_if, + ACTIONS(272), 1, + sym_endforeach, + ACTIONS(274), 1, + sym_foreach, + ACTIONS(277), 1, + sym_while, + ACTIONS(280), 1, + sym_function, + ACTIONS(283), 1, + sym_macro, + ACTIONS(286), 1, + sym_block, + ACTIONS(347), 1, + sym_identifier, + STATE(2), 1, + sym_if_command, + STATE(121), 1, + sym_function_command, + STATE(128), 1, + sym_block_command, + STATE(132), 1, + sym_macro_command, + STATE(139), 1, + sym_foreach_command, + STATE(144), 1, + sym_while_command, + ACTIONS(344), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(188), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [8994] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(440), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(438), 3, + STATE(134), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8332] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(302), 1, + sym_identifier, + STATE(8), 1, + sym_if_command, + STATE(114), 1, + sym_foreach_command, + STATE(115), 1, + sym_while_command, + STATE(116), 1, + sym_function_command, + STATE(117), 1, + sym_macro_command, + STATE(118), 1, + sym_block_command, + STATE(670), 1, + sym_body, + ACTIONS(300), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(107), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [9053] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(39), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + STATE(155), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8392] = 16, + ACTIONS(269), 1, + sym_if, + ACTIONS(274), 1, + sym_foreach, + ACTIONS(277), 1, + sym_while, + ACTIONS(280), 1, + sym_function, + ACTIONS(283), 1, + sym_macro, + ACTIONS(286), 1, + sym_block, + ACTIONS(350), 1, + ts_builtin_sym_end, + ACTIONS(355), 1, + sym_identifier, + STATE(10), 1, + sym_if_command, + STATE(119), 1, + sym_while_command, + STATE(149), 1, + sym_foreach_command, + STATE(151), 1, + sym_block_command, + STATE(152), 1, + sym_macro_command, + STATE(154), 1, + sym_function_command, + ACTIONS(352), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [9112] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(444), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(442), 3, + STATE(136), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8452] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(314), 1, + sym_identifier, + STATE(6), 1, + sym_if_command, + STATE(138), 1, + sym_foreach_command, + STATE(140), 1, + sym_while_command, + STATE(141), 1, + sym_function_command, + STATE(142), 1, + sym_macro_command, + STATE(143), 1, + sym_block_command, + STATE(658), 1, + sym_body, + ACTIONS(312), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(185), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [9171] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(448), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(446), 3, + STATE(153), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8512] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(310), 1, + sym_identifier, + STATE(2), 1, + sym_if_command, + STATE(121), 1, + sym_function_command, + STATE(128), 1, + sym_block_command, + STATE(132), 1, + sym_macro_command, + STATE(139), 1, + sym_foreach_command, + STATE(144), 1, + sym_while_command, + STATE(683), 1, + sym_body, + ACTIONS(308), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(102), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [9230] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(448), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + STATE(148), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8572] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(310), 1, + sym_identifier, + STATE(2), 1, + sym_if_command, + STATE(121), 1, + sym_function_command, + STATE(128), 1, + sym_block_command, + STATE(132), 1, + sym_macro_command, + STATE(139), 1, + sym_foreach_command, + STATE(144), 1, + sym_while_command, + STATE(649), 1, + sym_body, + ACTIONS(308), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [9289] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(452), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(450), 3, + STATE(148), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8632] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(306), 1, + sym_identifier, + STATE(11), 1, + sym_if_command, + STATE(126), 1, + sym_block_command, + STATE(131), 1, + sym_macro_command, + STATE(135), 1, + sym_function_command, + STATE(146), 1, + sym_while_command, + STATE(147), 1, + sym_foreach_command, + STATE(684), 1, + sym_body, + ACTIONS(304), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(180), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [9348] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(456), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(454), 3, + STATE(129), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8692] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(302), 1, + sym_identifier, + STATE(8), 1, + sym_if_command, + STATE(114), 1, + sym_foreach_command, + STATE(115), 1, + sym_while_command, + STATE(116), 1, + sym_function_command, + STATE(117), 1, + sym_macro_command, + STATE(118), 1, + sym_block_command, + STATE(685), 1, + sym_body, + ACTIONS(300), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(169), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [9407] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(460), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(458), 3, + STATE(155), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8752] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(298), 1, + sym_identifier, + STATE(3), 1, + sym_if_command, + STATE(110), 1, + sym_macro_command, + STATE(124), 1, + sym_while_command, + STATE(125), 1, + sym_function_command, + STATE(137), 1, + sym_block_command, + STATE(145), 1, + sym_foreach_command, + STATE(686), 1, + sym_body, + ACTIONS(296), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(181), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [9466] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(464), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(462), 3, + STATE(130), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8812] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(314), 1, + sym_identifier, + STATE(6), 1, + sym_if_command, + STATE(138), 1, + sym_foreach_command, + STATE(140), 1, + sym_while_command, + STATE(141), 1, + sym_function_command, + STATE(142), 1, + sym_macro_command, + STATE(143), 1, + sym_block_command, + STATE(687), 1, + sym_body, + ACTIONS(312), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(145), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [9525] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(468), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(466), 3, + STATE(153), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8872] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(306), 1, + sym_identifier, + STATE(11), 1, + sym_if_command, + STATE(126), 1, + sym_block_command, + STATE(131), 1, + sym_macro_command, + STATE(135), 1, + sym_function_command, + STATE(146), 1, + sym_while_command, + STATE(147), 1, + sym_foreach_command, + STATE(650), 1, + sym_body, + ACTIONS(304), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(176), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [9584] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(472), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(470), 3, + STATE(129), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8932] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(310), 1, + sym_identifier, + STATE(2), 1, + sym_if_command, + STATE(121), 1, + sym_function_command, + STATE(128), 1, + sym_block_command, + STATE(132), 1, + sym_macro_command, + STATE(139), 1, + sym_foreach_command, + STATE(144), 1, + sym_while_command, + STATE(654), 1, + sym_body, + ACTIONS(308), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(105), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [9643] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(474), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + STATE(148), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [8992] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(306), 1, + sym_identifier, + STATE(11), 1, + sym_if_command, + STATE(126), 1, + sym_block_command, + STATE(131), 1, + sym_macro_command, + STATE(135), 1, + sym_function_command, + STATE(146), 1, + sym_while_command, + STATE(147), 1, + sym_foreach_command, + STATE(668), 1, + sym_body, + ACTIONS(304), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [9702] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(476), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + STATE(129), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [9052] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(310), 1, + sym_identifier, + STATE(2), 1, + sym_if_command, + STATE(121), 1, + sym_function_command, + STATE(128), 1, + sym_block_command, + STATE(132), 1, + sym_macro_command, + STATE(139), 1, + sym_foreach_command, + STATE(144), 1, + sym_while_command, + STATE(667), 1, + sym_body, + ACTIONS(308), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [9761] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(478), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [9820] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(480), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [9879] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(482), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [9938] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(484), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [9997] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(486), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + STATE(148), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [9112] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(294), 1, + sym_endforeach, + ACTIONS(310), 1, + sym_identifier, + STATE(2), 1, + sym_if_command, + STATE(121), 1, + sym_function_command, + STATE(128), 1, + sym_block_command, + STATE(132), 1, + sym_macro_command, + STATE(139), 1, + sym_foreach_command, + STATE(144), 1, + sym_while_command, + ACTIONS(358), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [10056] = 19, + STATE(134), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [9172] = 16, ACTIONS(7), 1, sym_if, ACTIONS(9), 1, @@ -11673,35 +10723,27 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, ACTIONS(17), 1, sym_block, - ACTIONS(61), 1, - sym_elseif, - ACTIONS(63), 1, - sym_else, - ACTIONS(67), 1, + ACTIONS(310), 1, sym_identifier, - ACTIONS(382), 1, - sym_endif, - STATE(34), 1, + STATE(2), 1, sym_if_command, - STATE(207), 1, + STATE(121), 1, + sym_function_command, + STATE(128), 1, + sym_block_command, + STATE(132), 1, + sym_macro_command, + STATE(139), 1, sym_foreach_command, - STATE(209), 1, + STATE(144), 1, sym_while_command, - STATE(211), 1, - sym_macro_command, - STATE(213), 1, - sym_block_command, - STATE(231), 1, - sym_function_command, - STATE(514), 1, - sym_endif_command, - ACTIONS(488), 3, + STATE(651), 1, + sym_body, + ACTIONS(308), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(127), 12, - sym_elseif_command, - sym_else_command, + STATE(148), 10, sym_if_condition, sym_foreach_loop, sym_while_loop, @@ -11711,7600 +10753,2743 @@ static const uint16_t ts_small_parse_table[] = { sym_normal_command, sym__command_invocation, sym__untrimmed_command_invocation, - aux_sym_if_condition_repeat1, - [10127] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(490), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + aux_sym_source_file_repeat1, + [9232] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(19), 1, + sym_identifier, + ACTIONS(360), 1, + ts_builtin_sym_end, + STATE(10), 1, + sym_if_command, + STATE(119), 1, + sym_while_command, + STATE(149), 1, + sym_foreach_command, + STATE(151), 1, + sym_block_command, + STATE(152), 1, + sym_macro_command, + STATE(154), 1, + sym_function_command, + ACTIONS(362), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [10186] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(492), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, + STATE(136), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [9292] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(314), 1, + sym_identifier, + STATE(6), 1, + sym_if_command, + STATE(138), 1, + sym_foreach_command, + STATE(140), 1, + sym_while_command, + STATE(141), 1, + sym_function_command, + STATE(142), 1, + sym_macro_command, + STATE(143), 1, + sym_block_command, + STATE(663), 1, + sym_body, + ACTIONS(312), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [10245] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(496), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(494), 3, + STATE(153), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [9352] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(298), 1, + sym_identifier, + STATE(3), 1, + sym_if_command, + STATE(110), 1, + sym_macro_command, + STATE(124), 1, + sym_while_command, + STATE(125), 1, + sym_function_command, + STATE(137), 1, + sym_block_command, + STATE(145), 1, + sym_foreach_command, + STATE(660), 1, + sym_body, + ACTIONS(296), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(156), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [10304] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(500), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(498), 3, + STATE(130), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [9412] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(294), 1, + sym_endblock, + ACTIONS(314), 1, + sym_identifier, + STATE(6), 1, + sym_if_command, + STATE(138), 1, + sym_foreach_command, + STATE(140), 1, + sym_while_command, + STATE(141), 1, + sym_function_command, + STATE(142), 1, + sym_macro_command, + STATE(143), 1, + sym_block_command, + ACTIONS(364), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(167), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [10363] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(502), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [10422] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(500), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [10481] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(504), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [10540] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(508), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(506), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(168), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [10599] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(510), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [10658] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(508), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [10717] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(472), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [10776] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(512), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [10835] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(514), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [10894] = 19, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(61), 1, - sym_elseif, - ACTIONS(63), 1, - sym_else, - ACTIONS(67), 1, - sym_identifier, - ACTIONS(418), 1, - sym_endif, - STATE(34), 1, - sym_if_command, - STATE(207), 1, - sym_foreach_command, - STATE(209), 1, - sym_while_command, - STATE(211), 1, - sym_macro_command, - STATE(213), 1, - sym_block_command, - STATE(231), 1, - sym_function_command, - STATE(604), 1, - sym_endif_command, - ACTIONS(516), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(143), 12, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_if_condition_repeat1, - [10965] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(456), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [11024] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(518), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [11083] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(522), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(520), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(112), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [11142] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(524), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [11201] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(514), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(526), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(171), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [11260] = 13, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(27), 1, - anon_sym_LPAREN, - ACTIONS(31), 1, - anon_sym_DQUOTE, - ACTIONS(33), 1, - aux_sym__unquoted_text_token1, - ACTIONS(35), 1, - sym_bracket_argument, - ACTIONS(528), 1, - anon_sym_RPAREN, - STATE(353), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - ACTIONS(25), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - STATE(115), 4, - sym_argument, - sym__untrimmed_argument, - sym__paren_argument, - aux_sym__paren_argument_repeat1, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(273), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [11319] = 18, - ACTIONS(533), 1, - sym_if, - ACTIONS(536), 1, - sym_elseif, - ACTIONS(539), 1, - sym_else, - ACTIONS(542), 1, - sym_endif, - ACTIONS(544), 1, - sym_foreach, - ACTIONS(547), 1, - sym_while, - ACTIONS(550), 1, - sym_function, - ACTIONS(553), 1, - sym_macro, - ACTIONS(556), 1, - sym_block, - ACTIONS(559), 1, - sym_identifier, - STATE(34), 1, - sym_if_command, - STATE(207), 1, - sym_foreach_command, - STATE(209), 1, - sym_while_command, - STATE(211), 1, - sym_macro_command, - STATE(213), 1, - sym_block_command, - STATE(231), 1, - sym_function_command, - ACTIONS(530), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(191), 12, - sym_elseif_command, - sym_else_command, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_if_condition_repeat1, - [11387] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(564), 1, - sym_endforeach, - ACTIONS(566), 1, - sym_identifier, - STATE(129), 1, - sym_if_command, - STATE(225), 1, - sym_block_command, - STATE(227), 1, - sym_macro_command, - STATE(228), 1, - sym_function_command, - STATE(229), 1, - sym_while_command, - STATE(230), 1, - sym_foreach_command, - STATE(452), 1, - sym_endforeach_command, - ACTIONS(562), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(210), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [11450] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(570), 1, - sym_endfunction, - ACTIONS(572), 1, - sym_identifier, - STATE(53), 1, - sym_if_command, - STATE(252), 1, - sym_block_command, - STATE(255), 1, - sym_foreach_command, - STATE(256), 1, - sym_macro_command, - STATE(258), 1, - sym_while_command, - STATE(259), 1, - sym_function_command, - STATE(543), 1, - sym_endfunction_command, - ACTIONS(568), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(263), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [11513] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(566), 1, - sym_identifier, - ACTIONS(576), 1, - sym_endforeach, - STATE(129), 1, - sym_if_command, - STATE(225), 1, - sym_block_command, - STATE(227), 1, - sym_macro_command, - STATE(228), 1, - sym_function_command, - STATE(229), 1, - sym_while_command, - STATE(230), 1, - sym_foreach_command, - STATE(584), 1, - sym_endforeach_command, - ACTIONS(574), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(243), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [11576] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(580), 1, - sym_endwhile, - ACTIONS(582), 1, - sym_identifier, - STATE(184), 1, - sym_if_command, - STATE(195), 1, - sym_while_command, - STATE(204), 1, - sym_function_command, - STATE(205), 1, - sym_foreach_command, - STATE(206), 1, - sym_macro_command, - STATE(208), 1, - sym_block_command, - STATE(637), 1, - sym_endwhile_command, - ACTIONS(578), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(220), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [11639] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(582), 1, - sym_identifier, - ACTIONS(586), 1, - sym_endwhile, - STATE(184), 1, - sym_if_command, - STATE(195), 1, - sym_while_command, - STATE(204), 1, - sym_function_command, - STATE(205), 1, - sym_foreach_command, - STATE(206), 1, - sym_macro_command, - STATE(208), 1, - sym_block_command, - STATE(617), 1, - sym_endwhile_command, - ACTIONS(584), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(250), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [11702] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(582), 1, - sym_identifier, - ACTIONS(590), 1, - sym_endwhile, - STATE(184), 1, - sym_if_command, - STATE(195), 1, - sym_while_command, - STATE(204), 1, - sym_function_command, - STATE(205), 1, - sym_foreach_command, - STATE(206), 1, - sym_macro_command, - STATE(208), 1, - sym_block_command, - STATE(512), 1, - sym_endwhile_command, - ACTIONS(588), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(234), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [11765] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(566), 1, - sym_identifier, - ACTIONS(594), 1, - sym_endforeach, - STATE(129), 1, - sym_if_command, - STATE(225), 1, - sym_block_command, - STATE(227), 1, - sym_macro_command, - STATE(228), 1, - sym_function_command, - STATE(229), 1, - sym_while_command, - STATE(230), 1, - sym_foreach_command, - STATE(513), 1, - sym_endforeach_command, - ACTIONS(592), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(233), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [11828] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(598), 1, - sym_endblock, - ACTIONS(600), 1, - sym_identifier, - STATE(24), 1, - sym_if_command, - STATE(192), 1, - sym_foreach_command, - STATE(241), 1, - sym_while_command, - STATE(244), 1, - sym_function_command, - STATE(247), 1, - sym_macro_command, - STATE(260), 1, - sym_block_command, - STATE(487), 1, - sym_endblock_command, - ACTIONS(596), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(242), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [11891] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(572), 1, - sym_identifier, - ACTIONS(604), 1, - sym_endfunction, - STATE(53), 1, - sym_if_command, - STATE(252), 1, - sym_block_command, - STATE(255), 1, - sym_foreach_command, - STATE(256), 1, - sym_macro_command, - STATE(258), 1, - sym_while_command, - STATE(259), 1, - sym_function_command, - STATE(638), 1, - sym_endfunction_command, - ACTIONS(602), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(251), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [11954] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(608), 1, - sym_endmacro, - ACTIONS(610), 1, - sym_identifier, - STATE(170), 1, - sym_if_command, - STATE(197), 1, - sym_while_command, - STATE(198), 1, - sym_foreach_command, - STATE(199), 1, - sym_block_command, - STATE(221), 1, - sym_macro_command, - STATE(222), 1, - sym_function_command, - STATE(636), 1, - sym_endmacro_command, - ACTIONS(606), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(261), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [12017] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(600), 1, - sym_identifier, - ACTIONS(614), 1, - sym_endblock, - STATE(24), 1, - sym_if_command, - STATE(192), 1, - sym_foreach_command, - STATE(241), 1, - sym_while_command, - STATE(244), 1, - sym_function_command, - STATE(247), 1, - sym_macro_command, - STATE(260), 1, - sym_block_command, - STATE(634), 1, - sym_endblock_command, - ACTIONS(612), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(257), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [12080] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(600), 1, - sym_identifier, - ACTIONS(618), 1, - sym_endblock, - STATE(24), 1, - sym_if_command, - STATE(192), 1, - sym_foreach_command, - STATE(241), 1, - sym_while_command, - STATE(244), 1, - sym_function_command, - STATE(247), 1, - sym_macro_command, - STATE(260), 1, - sym_block_command, - STATE(541), 1, - sym_endblock_command, - ACTIONS(616), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(264), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [12143] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(572), 1, - sym_identifier, - ACTIONS(622), 1, - sym_endfunction, - STATE(53), 1, - sym_if_command, - STATE(252), 1, - sym_block_command, - STATE(255), 1, - sym_foreach_command, - STATE(256), 1, - sym_macro_command, - STATE(258), 1, - sym_while_command, - STATE(259), 1, - sym_function_command, - STATE(635), 1, - sym_endfunction_command, - ACTIONS(620), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(253), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [12206] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(566), 1, - sym_identifier, - ACTIONS(626), 1, - sym_endforeach, - STATE(129), 1, - sym_if_command, - STATE(225), 1, - sym_block_command, - STATE(227), 1, - sym_macro_command, - STATE(228), 1, - sym_function_command, - STATE(229), 1, - sym_while_command, - STATE(230), 1, - sym_foreach_command, - STATE(639), 1, - sym_endforeach_command, - ACTIONS(624), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(212), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [12269] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(610), 1, - sym_identifier, - ACTIONS(630), 1, - sym_endmacro, - STATE(170), 1, - sym_if_command, - STATE(197), 1, - sym_while_command, - STATE(198), 1, - sym_foreach_command, - STATE(199), 1, - sym_block_command, - STATE(221), 1, - sym_macro_command, - STATE(222), 1, - sym_function_command, - STATE(633), 1, - sym_endmacro_command, - ACTIONS(628), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(223), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [12332] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(566), 1, - sym_identifier, - ACTIONS(634), 1, - sym_endforeach, - STATE(129), 1, - sym_if_command, - STATE(225), 1, - sym_block_command, - STATE(227), 1, - sym_macro_command, - STATE(228), 1, - sym_function_command, - STATE(229), 1, - sym_while_command, - STATE(230), 1, - sym_foreach_command, - STATE(373), 1, - sym_endforeach_command, - ACTIONS(632), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(224), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [12395] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(600), 1, - sym_identifier, - ACTIONS(638), 1, - sym_endblock, - STATE(24), 1, - sym_if_command, - STATE(192), 1, - sym_foreach_command, - STATE(241), 1, - sym_while_command, - STATE(244), 1, - sym_function_command, - STATE(247), 1, - sym_macro_command, - STATE(260), 1, - sym_block_command, - STATE(632), 1, - sym_endblock_command, - ACTIONS(636), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(254), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [12458] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(582), 1, - sym_identifier, - ACTIONS(642), 1, - sym_endwhile, - STATE(184), 1, - sym_if_command, - STATE(195), 1, - sym_while_command, - STATE(204), 1, - sym_function_command, - STATE(205), 1, - sym_foreach_command, - STATE(206), 1, - sym_macro_command, - STATE(208), 1, - sym_block_command, - STATE(375), 1, - sym_endwhile_command, - ACTIONS(640), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(232), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [12521] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(564), 1, - sym_endforeach, - ACTIONS(566), 1, - sym_identifier, - STATE(129), 1, - sym_if_command, - STATE(225), 1, - sym_block_command, - STATE(227), 1, - sym_macro_command, - STATE(228), 1, - sym_function_command, - STATE(229), 1, - sym_while_command, - STATE(230), 1, - sym_foreach_command, - STATE(461), 1, - sym_endforeach_command, - ACTIONS(644), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(267), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [12584] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(610), 1, - sym_identifier, - ACTIONS(648), 1, - sym_endmacro, - STATE(170), 1, - sym_if_command, - STATE(197), 1, - sym_while_command, - STATE(198), 1, - sym_foreach_command, - STATE(199), 1, - sym_block_command, - STATE(221), 1, - sym_macro_command, - STATE(222), 1, - sym_function_command, - STATE(377), 1, - sym_endmacro_command, - ACTIONS(646), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(238), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [12647] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(566), 1, - sym_identifier, - ACTIONS(626), 1, - sym_endforeach, - STATE(129), 1, - sym_if_command, - STATE(225), 1, - sym_block_command, - STATE(227), 1, - sym_macro_command, - STATE(228), 1, - sym_function_command, - STATE(229), 1, - sym_while_command, - STATE(230), 1, - sym_foreach_command, - STATE(629), 1, - sym_endforeach_command, - ACTIONS(644), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(267), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [12710] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(600), 1, - sym_identifier, - ACTIONS(652), 1, - sym_endblock, - STATE(24), 1, - sym_if_command, - STATE(192), 1, - sym_foreach_command, - STATE(241), 1, - sym_while_command, - STATE(244), 1, - sym_function_command, - STATE(247), 1, - sym_macro_command, - STATE(260), 1, - sym_block_command, - STATE(378), 1, - sym_endblock_command, - ACTIONS(650), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(239), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [12773] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(610), 1, - sym_identifier, - ACTIONS(656), 1, - sym_endmacro, - STATE(170), 1, - sym_if_command, - STATE(197), 1, - sym_while_command, - STATE(198), 1, - sym_foreach_command, - STATE(199), 1, - sym_block_command, - STATE(221), 1, - sym_macro_command, - STATE(222), 1, - sym_function_command, - STATE(542), 1, - sym_endmacro_command, - ACTIONS(654), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(268), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [12836] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(600), 1, - sym_identifier, - ACTIONS(658), 1, - sym_endblock, - STATE(24), 1, - sym_if_command, - STATE(192), 1, - sym_foreach_command, - STATE(241), 1, - sym_while_command, - STATE(244), 1, - sym_function_command, - STATE(247), 1, - sym_macro_command, - STATE(260), 1, - sym_block_command, - STATE(498), 1, - sym_endblock_command, - ACTIONS(616), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(264), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [12899] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(610), 1, - sym_identifier, - ACTIONS(660), 1, - sym_endmacro, - STATE(170), 1, - sym_if_command, - STATE(197), 1, - sym_while_command, - STATE(198), 1, - sym_foreach_command, - STATE(199), 1, - sym_block_command, - STATE(221), 1, - sym_macro_command, - STATE(222), 1, - sym_function_command, - STATE(524), 1, - sym_endmacro_command, - ACTIONS(654), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(268), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [12962] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(572), 1, - sym_identifier, - ACTIONS(662), 1, - sym_endfunction, - STATE(53), 1, - sym_if_command, - STATE(252), 1, - sym_block_command, - STATE(255), 1, - sym_foreach_command, - STATE(256), 1, - sym_macro_command, - STATE(258), 1, - sym_while_command, - STATE(259), 1, - sym_function_command, - STATE(500), 1, - sym_endfunction_command, - ACTIONS(568), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(263), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [13025] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(582), 1, - sym_identifier, - ACTIONS(666), 1, - sym_endwhile, - STATE(184), 1, - sym_if_command, - STATE(195), 1, - sym_while_command, - STATE(204), 1, - sym_function_command, - STATE(205), 1, - sym_foreach_command, - STATE(206), 1, - sym_macro_command, - STATE(208), 1, - sym_block_command, - STATE(501), 1, - sym_endwhile_command, - ACTIONS(664), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(265), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [13088] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(566), 1, - sym_identifier, - ACTIONS(668), 1, - sym_endforeach, - STATE(129), 1, - sym_if_command, - STATE(225), 1, - sym_block_command, - STATE(227), 1, - sym_macro_command, - STATE(228), 1, - sym_function_command, - STATE(229), 1, - sym_while_command, - STATE(230), 1, - sym_foreach_command, - STATE(502), 1, - sym_endforeach_command, - ACTIONS(644), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(267), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [13151] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(580), 1, - sym_endwhile, - ACTIONS(582), 1, - sym_identifier, - STATE(184), 1, - sym_if_command, - STATE(195), 1, - sym_while_command, - STATE(204), 1, - sym_function_command, - STATE(205), 1, - sym_foreach_command, - STATE(206), 1, - sym_macro_command, - STATE(208), 1, - sym_block_command, - STATE(628), 1, - sym_endwhile_command, - ACTIONS(664), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(265), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [13214] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(610), 1, - sym_identifier, - ACTIONS(672), 1, - sym_endmacro, - STATE(170), 1, - sym_if_command, - STATE(197), 1, - sym_while_command, - STATE(198), 1, - sym_foreach_command, - STATE(199), 1, - sym_block_command, - STATE(221), 1, - sym_macro_command, - STATE(222), 1, - sym_function_command, - STATE(499), 1, - sym_endmacro_command, - ACTIONS(670), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(240), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [13277] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(572), 1, - sym_identifier, - ACTIONS(676), 1, - sym_endfunction, - STATE(53), 1, - sym_if_command, - STATE(252), 1, - sym_block_command, - STATE(255), 1, - sym_foreach_command, - STATE(256), 1, - sym_macro_command, - STATE(258), 1, - sym_while_command, - STATE(259), 1, - sym_function_command, - STATE(505), 1, - sym_endfunction_command, - ACTIONS(674), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(236), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [13340] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(610), 1, - sym_identifier, - ACTIONS(630), 1, - sym_endmacro, - STATE(170), 1, - sym_if_command, - STATE(197), 1, - sym_while_command, - STATE(198), 1, - sym_foreach_command, - STATE(199), 1, - sym_block_command, - STATE(221), 1, - sym_macro_command, - STATE(222), 1, - sym_function_command, - STATE(620), 1, - sym_endmacro_command, - ACTIONS(654), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(268), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [13403] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(566), 1, - sym_identifier, - ACTIONS(634), 1, - sym_endforeach, - STATE(129), 1, - sym_if_command, - STATE(225), 1, - sym_block_command, - STATE(227), 1, - sym_macro_command, - STATE(228), 1, - sym_function_command, - STATE(229), 1, - sym_while_command, - STATE(230), 1, - sym_foreach_command, - STATE(384), 1, - sym_endforeach_command, - ACTIONS(644), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(267), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [13466] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(600), 1, - sym_identifier, - ACTIONS(658), 1, - sym_endblock, - STATE(24), 1, - sym_if_command, - STATE(192), 1, - sym_foreach_command, - STATE(241), 1, - sym_while_command, - STATE(244), 1, - sym_function_command, - STATE(247), 1, - sym_macro_command, - STATE(260), 1, - sym_block_command, - STATE(506), 1, - sym_endblock_command, - ACTIONS(678), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(215), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [13529] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(600), 1, - sym_identifier, - ACTIONS(680), 1, - sym_endblock, - STATE(24), 1, - sym_if_command, - STATE(192), 1, - sym_foreach_command, - STATE(241), 1, - sym_while_command, - STATE(244), 1, - sym_function_command, - STATE(247), 1, - sym_macro_command, - STATE(260), 1, - sym_block_command, - STATE(465), 1, - sym_endblock_command, - ACTIONS(616), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(264), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [13592] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(610), 1, - sym_identifier, - ACTIONS(660), 1, - sym_endmacro, - STATE(170), 1, - sym_if_command, - STATE(197), 1, - sym_while_command, - STATE(198), 1, - sym_foreach_command, - STATE(199), 1, - sym_block_command, - STATE(221), 1, - sym_macro_command, - STATE(222), 1, - sym_function_command, - STATE(507), 1, - sym_endmacro_command, - ACTIONS(682), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(216), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [13655] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(572), 1, - sym_identifier, - ACTIONS(662), 1, - sym_endfunction, - STATE(53), 1, - sym_if_command, - STATE(252), 1, - sym_block_command, - STATE(255), 1, - sym_foreach_command, - STATE(256), 1, - sym_macro_command, - STATE(258), 1, - sym_while_command, - STATE(259), 1, - sym_function_command, - STATE(508), 1, - sym_endfunction_command, - ACTIONS(684), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(217), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [13718] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(582), 1, - sym_identifier, - ACTIONS(666), 1, - sym_endwhile, - STATE(184), 1, - sym_if_command, - STATE(195), 1, - sym_while_command, - STATE(204), 1, - sym_function_command, - STATE(205), 1, - sym_foreach_command, - STATE(206), 1, - sym_macro_command, - STATE(208), 1, - sym_block_command, - STATE(509), 1, - sym_endwhile_command, - ACTIONS(686), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(218), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [13781] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(566), 1, - sym_identifier, - ACTIONS(668), 1, - sym_endforeach, - STATE(129), 1, - sym_if_command, - STATE(225), 1, - sym_block_command, - STATE(227), 1, - sym_macro_command, - STATE(228), 1, - sym_function_command, - STATE(229), 1, - sym_while_command, - STATE(230), 1, - sym_foreach_command, - STATE(510), 1, - sym_endforeach_command, - ACTIONS(688), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(219), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [13844] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(572), 1, - sym_identifier, - ACTIONS(692), 1, - sym_endfunction, - STATE(53), 1, - sym_if_command, - STATE(252), 1, - sym_block_command, - STATE(255), 1, - sym_foreach_command, - STATE(256), 1, - sym_macro_command, - STATE(258), 1, - sym_while_command, - STATE(259), 1, - sym_function_command, - STATE(376), 1, - sym_endfunction_command, - ACTIONS(690), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(237), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [13907] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(582), 1, - sym_identifier, - ACTIONS(642), 1, - sym_endwhile, - STATE(184), 1, - sym_if_command, - STATE(195), 1, - sym_while_command, - STATE(204), 1, - sym_function_command, - STATE(205), 1, - sym_foreach_command, - STATE(206), 1, - sym_macro_command, - STATE(208), 1, - sym_block_command, - STATE(385), 1, - sym_endwhile_command, - ACTIONS(664), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(265), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [13970] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(566), 1, - sym_identifier, - ACTIONS(594), 1, - sym_endforeach, - STATE(129), 1, - sym_if_command, - STATE(225), 1, - sym_block_command, - STATE(227), 1, - sym_macro_command, - STATE(228), 1, - sym_function_command, - STATE(229), 1, - sym_while_command, - STATE(230), 1, - sym_foreach_command, - STATE(422), 1, - sym_endforeach_command, - ACTIONS(644), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(267), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [14033] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(582), 1, - sym_identifier, - ACTIONS(590), 1, - sym_endwhile, - STATE(184), 1, - sym_if_command, - STATE(195), 1, - sym_while_command, - STATE(204), 1, - sym_function_command, - STATE(205), 1, - sym_foreach_command, - STATE(206), 1, - sym_macro_command, - STATE(208), 1, - sym_block_command, - STATE(423), 1, - sym_endwhile_command, - ACTIONS(664), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(265), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [14096] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(610), 1, - sym_identifier, - ACTIONS(694), 1, - sym_endmacro, - STATE(170), 1, - sym_if_command, - STATE(197), 1, - sym_while_command, - STATE(198), 1, - sym_foreach_command, - STATE(199), 1, - sym_block_command, - STATE(221), 1, - sym_macro_command, - STATE(222), 1, - sym_function_command, - STATE(464), 1, - sym_endmacro_command, - ACTIONS(654), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(268), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [14159] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(572), 1, - sym_identifier, - ACTIONS(676), 1, - sym_endfunction, - STATE(53), 1, - sym_if_command, - STATE(252), 1, - sym_block_command, - STATE(255), 1, - sym_foreach_command, - STATE(256), 1, - sym_macro_command, - STATE(258), 1, - sym_while_command, - STATE(259), 1, - sym_function_command, - STATE(424), 1, - sym_endfunction_command, - ACTIONS(568), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(263), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [14222] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(572), 1, - sym_identifier, - ACTIONS(692), 1, - sym_endfunction, - STATE(53), 1, - sym_if_command, - STATE(252), 1, - sym_block_command, - STATE(255), 1, - sym_foreach_command, - STATE(256), 1, - sym_macro_command, - STATE(258), 1, - sym_while_command, - STATE(259), 1, - sym_function_command, - STATE(386), 1, - sym_endfunction_command, - ACTIONS(568), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(263), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [14285] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(610), 1, - sym_identifier, - ACTIONS(648), 1, - sym_endmacro, - STATE(170), 1, - sym_if_command, - STATE(197), 1, - sym_while_command, - STATE(198), 1, - sym_foreach_command, - STATE(199), 1, - sym_block_command, - STATE(221), 1, - sym_macro_command, - STATE(222), 1, - sym_function_command, - STATE(387), 1, - sym_endmacro_command, - ACTIONS(654), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(268), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [14348] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(600), 1, - sym_identifier, - ACTIONS(652), 1, - sym_endblock, - STATE(24), 1, - sym_if_command, - STATE(192), 1, - sym_foreach_command, - STATE(241), 1, - sym_while_command, - STATE(244), 1, - sym_function_command, - STATE(247), 1, - sym_macro_command, - STATE(260), 1, - sym_block_command, - STATE(388), 1, - sym_endblock_command, - ACTIONS(616), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(264), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [14411] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(610), 1, - sym_identifier, - ACTIONS(672), 1, - sym_endmacro, - STATE(170), 1, - sym_if_command, - STATE(197), 1, - sym_while_command, - STATE(198), 1, - sym_foreach_command, - STATE(199), 1, - sym_block_command, - STATE(221), 1, - sym_macro_command, - STATE(222), 1, - sym_function_command, - STATE(425), 1, - sym_endmacro_command, - ACTIONS(654), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(268), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [14474] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(582), 1, - sym_identifier, - ACTIONS(698), 1, - sym_endwhile, - STATE(184), 1, - sym_if_command, - STATE(195), 1, - sym_while_command, - STATE(204), 1, - sym_function_command, - STATE(205), 1, - sym_foreach_command, - STATE(206), 1, - sym_macro_command, - STATE(208), 1, - sym_block_command, - STATE(453), 1, - sym_endwhile_command, - ACTIONS(696), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(246), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [14537] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(598), 1, - sym_endblock, - ACTIONS(600), 1, - sym_identifier, - STATE(24), 1, - sym_if_command, - STATE(192), 1, - sym_foreach_command, - STATE(241), 1, - sym_while_command, - STATE(244), 1, - sym_function_command, - STATE(247), 1, - sym_macro_command, - STATE(260), 1, - sym_block_command, - STATE(426), 1, - sym_endblock_command, - ACTIONS(616), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(264), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [14600] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(566), 1, - sym_identifier, - ACTIONS(576), 1, - sym_endforeach, - STATE(129), 1, - sym_if_command, - STATE(225), 1, - sym_block_command, - STATE(227), 1, - sym_macro_command, - STATE(228), 1, - sym_function_command, - STATE(229), 1, - sym_while_command, - STATE(230), 1, - sym_foreach_command, - STATE(616), 1, - sym_endforeach_command, - ACTIONS(644), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(267), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [14663] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(572), 1, - sym_identifier, - ACTIONS(702), 1, - sym_endfunction, - STATE(53), 1, - sym_if_command, - STATE(252), 1, - sym_block_command, - STATE(255), 1, - sym_foreach_command, - STATE(256), 1, - sym_macro_command, - STATE(258), 1, - sym_while_command, - STATE(259), 1, - sym_function_command, - STATE(454), 1, - sym_endfunction_command, - ACTIONS(700), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(245), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [14726] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(572), 1, - sym_identifier, - ACTIONS(702), 1, - sym_endfunction, - STATE(53), 1, - sym_if_command, - STATE(252), 1, - sym_block_command, - STATE(255), 1, - sym_foreach_command, - STATE(256), 1, - sym_macro_command, - STATE(258), 1, - sym_while_command, - STATE(259), 1, - sym_function_command, - STATE(463), 1, - sym_endfunction_command, - ACTIONS(568), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(263), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [14789] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(582), 1, - sym_identifier, - ACTIONS(698), 1, - sym_endwhile, - STATE(184), 1, - sym_if_command, - STATE(195), 1, - sym_while_command, - STATE(204), 1, - sym_function_command, - STATE(205), 1, - sym_foreach_command, - STATE(206), 1, - sym_macro_command, - STATE(208), 1, - sym_block_command, - STATE(462), 1, - sym_endwhile_command, - ACTIONS(664), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(265), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [14852] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(610), 1, - sym_identifier, - ACTIONS(694), 1, - sym_endmacro, - STATE(170), 1, - sym_if_command, - STATE(197), 1, - sym_while_command, - STATE(198), 1, - sym_foreach_command, - STATE(199), 1, - sym_block_command, - STATE(221), 1, - sym_macro_command, - STATE(222), 1, - sym_function_command, - STATE(455), 1, - sym_endmacro_command, - ACTIONS(704), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(235), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [14915] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(582), 1, - sym_identifier, - ACTIONS(706), 1, - sym_endwhile, - STATE(184), 1, - sym_if_command, - STATE(195), 1, - sym_while_command, - STATE(204), 1, - sym_function_command, - STATE(205), 1, - sym_foreach_command, - STATE(206), 1, - sym_macro_command, - STATE(208), 1, - sym_block_command, - STATE(544), 1, - sym_endwhile_command, - ACTIONS(664), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(265), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [14978] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(566), 1, - sym_identifier, - ACTIONS(708), 1, - sym_endforeach, - STATE(129), 1, - sym_if_command, - STATE(225), 1, - sym_block_command, - STATE(227), 1, - sym_macro_command, - STATE(228), 1, - sym_function_command, - STATE(229), 1, - sym_while_command, - STATE(230), 1, - sym_foreach_command, - STATE(545), 1, - sym_endforeach_command, - ACTIONS(644), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(267), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [15041] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(582), 1, - sym_identifier, - ACTIONS(586), 1, - sym_endwhile, - STATE(184), 1, - sym_if_command, - STATE(195), 1, - sym_while_command, - STATE(204), 1, - sym_function_command, - STATE(205), 1, - sym_foreach_command, - STATE(206), 1, - sym_macro_command, - STATE(208), 1, - sym_block_command, - STATE(613), 1, - sym_endwhile_command, - ACTIONS(664), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(265), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [15104] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(572), 1, - sym_identifier, - ACTIONS(604), 1, - sym_endfunction, - STATE(53), 1, - sym_if_command, - STATE(252), 1, - sym_block_command, - STATE(255), 1, - sym_foreach_command, - STATE(256), 1, - sym_macro_command, - STATE(258), 1, - sym_while_command, - STATE(259), 1, - sym_function_command, - STATE(612), 1, - sym_endfunction_command, - ACTIONS(568), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(263), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [15167] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(600), 1, - sym_identifier, - ACTIONS(618), 1, - sym_endblock, - STATE(24), 1, - sym_if_command, - STATE(192), 1, - sym_foreach_command, - STATE(241), 1, - sym_while_command, - STATE(244), 1, - sym_function_command, - STATE(247), 1, - sym_macro_command, - STATE(260), 1, - sym_block_command, - STATE(553), 1, - sym_endblock_command, - ACTIONS(710), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(203), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [15230] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(572), 1, - sym_identifier, - ACTIONS(622), 1, - sym_endfunction, - STATE(53), 1, - sym_if_command, - STATE(252), 1, - sym_block_command, - STATE(255), 1, - sym_foreach_command, - STATE(256), 1, - sym_macro_command, - STATE(258), 1, - sym_while_command, - STATE(259), 1, - sym_function_command, - STATE(621), 1, - sym_endfunction_command, - ACTIONS(568), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(263), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [15293] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(600), 1, - sym_identifier, - ACTIONS(638), 1, - sym_endblock, - STATE(24), 1, - sym_if_command, - STATE(192), 1, - sym_foreach_command, - STATE(241), 1, - sym_while_command, - STATE(244), 1, - sym_function_command, - STATE(247), 1, - sym_macro_command, - STATE(260), 1, - sym_block_command, - STATE(619), 1, - sym_endblock_command, - ACTIONS(616), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(264), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [15356] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(566), 1, - sym_identifier, - ACTIONS(708), 1, - sym_endforeach, - STATE(129), 1, - sym_if_command, - STATE(225), 1, - sym_block_command, - STATE(227), 1, - sym_macro_command, - STATE(228), 1, - sym_function_command, - STATE(229), 1, - sym_while_command, - STATE(230), 1, - sym_foreach_command, - STATE(562), 1, - sym_endforeach_command, - ACTIONS(712), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(249), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [15419] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(610), 1, - sym_identifier, - ACTIONS(656), 1, - sym_endmacro, - STATE(170), 1, - sym_if_command, - STATE(197), 1, - sym_while_command, - STATE(198), 1, - sym_foreach_command, - STATE(199), 1, - sym_block_command, - STATE(221), 1, - sym_macro_command, - STATE(222), 1, - sym_function_command, - STATE(554), 1, - sym_endmacro_command, - ACTIONS(714), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(214), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [15482] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(600), 1, - sym_identifier, - ACTIONS(614), 1, - sym_endblock, - STATE(24), 1, - sym_if_command, - STATE(192), 1, - sym_foreach_command, - STATE(241), 1, - sym_while_command, - STATE(244), 1, - sym_function_command, - STATE(247), 1, - sym_macro_command, - STATE(260), 1, - sym_block_command, - STATE(610), 1, - sym_endblock_command, - ACTIONS(616), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(264), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [15545] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(582), 1, - sym_identifier, - ACTIONS(706), 1, - sym_endwhile, - STATE(184), 1, - sym_if_command, - STATE(195), 1, - sym_while_command, - STATE(204), 1, - sym_function_command, - STATE(205), 1, - sym_foreach_command, - STATE(206), 1, - sym_macro_command, - STATE(208), 1, - sym_block_command, - STATE(561), 1, - sym_endwhile_command, - ACTIONS(716), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(248), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [15608] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(570), 1, - sym_endfunction, - ACTIONS(572), 1, - sym_identifier, - STATE(53), 1, - sym_if_command, - STATE(252), 1, - sym_block_command, - STATE(255), 1, - sym_foreach_command, - STATE(256), 1, - sym_macro_command, - STATE(258), 1, - sym_while_command, - STATE(259), 1, - sym_function_command, - STATE(555), 1, - sym_endfunction_command, - ACTIONS(718), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(193), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [15671] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(600), 1, - sym_identifier, - ACTIONS(680), 1, - sym_endblock, - STATE(24), 1, - sym_if_command, - STATE(192), 1, - sym_foreach_command, - STATE(241), 1, - sym_while_command, - STATE(244), 1, - sym_function_command, - STATE(247), 1, - sym_macro_command, - STATE(260), 1, - sym_block_command, - STATE(456), 1, - sym_endblock_command, - ACTIONS(720), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(226), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [15734] = 17, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(608), 1, - sym_endmacro, - ACTIONS(610), 1, - sym_identifier, - STATE(170), 1, - sym_if_command, - STATE(197), 1, - sym_while_command, - STATE(198), 1, - sym_foreach_command, - STATE(199), 1, - sym_block_command, - STATE(221), 1, - sym_macro_command, - STATE(222), 1, - sym_function_command, - STATE(611), 1, - sym_endmacro_command, - ACTIONS(654), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(268), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [15797] = 16, - ACTIONS(722), 1, - ts_builtin_sym_end, - ACTIONS(727), 1, - sym_if, - ACTIONS(730), 1, - sym_foreach, - ACTIONS(733), 1, - sym_while, - ACTIONS(736), 1, - sym_function, - ACTIONS(739), 1, - sym_macro, - ACTIONS(742), 1, - sym_block, - ACTIONS(745), 1, - sym_identifier, - STATE(10), 1, - sym_if_command, - STATE(194), 1, - sym_foreach_command, - STATE(196), 1, - sym_while_command, - STATE(200), 1, - sym_function_command, - STATE(201), 1, - sym_macro_command, - STATE(202), 1, - sym_block_command, - ACTIONS(724), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(262), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [15857] = 16, - ACTIONS(727), 1, - sym_if, - ACTIONS(730), 1, - sym_foreach, - ACTIONS(733), 1, - sym_while, - ACTIONS(736), 1, - sym_function, - ACTIONS(739), 1, - sym_macro, - ACTIONS(742), 1, - sym_block, - ACTIONS(751), 1, - sym_endfunction, - ACTIONS(753), 1, - sym_identifier, - STATE(53), 1, - sym_if_command, - STATE(252), 1, - sym_block_command, - STATE(255), 1, - sym_foreach_command, - STATE(256), 1, - sym_macro_command, - STATE(258), 1, - sym_while_command, - STATE(259), 1, - sym_function_command, - ACTIONS(748), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(263), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [15917] = 16, - ACTIONS(727), 1, - sym_if, - ACTIONS(730), 1, - sym_foreach, - ACTIONS(733), 1, - sym_while, - ACTIONS(736), 1, - sym_function, - ACTIONS(739), 1, - sym_macro, - ACTIONS(742), 1, - sym_block, - ACTIONS(751), 1, - sym_endblock, - ACTIONS(759), 1, - sym_identifier, - STATE(24), 1, - sym_if_command, - STATE(192), 1, - sym_foreach_command, - STATE(241), 1, - sym_while_command, - STATE(244), 1, - sym_function_command, - STATE(247), 1, - sym_macro_command, - STATE(260), 1, - sym_block_command, - ACTIONS(756), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(264), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [15977] = 16, - ACTIONS(727), 1, - sym_if, - ACTIONS(730), 1, - sym_foreach, - ACTIONS(733), 1, - sym_while, - ACTIONS(736), 1, - sym_function, - ACTIONS(739), 1, - sym_macro, - ACTIONS(742), 1, - sym_block, - ACTIONS(751), 1, - sym_endwhile, - ACTIONS(765), 1, - sym_identifier, - STATE(184), 1, - sym_if_command, - STATE(195), 1, - sym_while_command, - STATE(204), 1, - sym_function_command, - STATE(205), 1, - sym_foreach_command, - STATE(206), 1, - sym_macro_command, - STATE(208), 1, - sym_block_command, - ACTIONS(762), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(265), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [16037] = 16, - ACTIONS(7), 1, - sym_if, - ACTIONS(9), 1, - sym_foreach, - ACTIONS(11), 1, - sym_while, - ACTIONS(13), 1, - sym_function, - ACTIONS(15), 1, - sym_macro, - ACTIONS(17), 1, - sym_block, - ACTIONS(19), 1, - sym_identifier, - ACTIONS(768), 1, - ts_builtin_sym_end, - STATE(10), 1, - sym_if_command, - STATE(194), 1, - sym_foreach_command, - STATE(196), 1, - sym_while_command, - STATE(200), 1, - sym_function_command, - STATE(201), 1, - sym_macro_command, - STATE(202), 1, - sym_block_command, - ACTIONS(770), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(262), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [16097] = 16, - ACTIONS(727), 1, - sym_if, - ACTIONS(730), 1, - sym_foreach, - ACTIONS(733), 1, - sym_while, - ACTIONS(736), 1, - sym_function, - ACTIONS(739), 1, - sym_macro, - ACTIONS(742), 1, - sym_block, - ACTIONS(751), 1, - sym_endforeach, - ACTIONS(775), 1, - sym_identifier, - STATE(129), 1, - sym_if_command, - STATE(225), 1, - sym_block_command, - STATE(227), 1, - sym_macro_command, - STATE(228), 1, - sym_function_command, - STATE(229), 1, - sym_while_command, - STATE(230), 1, - sym_foreach_command, - ACTIONS(772), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(267), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [16157] = 16, - ACTIONS(727), 1, - sym_if, - ACTIONS(730), 1, - sym_foreach, - ACTIONS(733), 1, - sym_while, - ACTIONS(736), 1, - sym_function, - ACTIONS(739), 1, - sym_macro, - ACTIONS(742), 1, - sym_block, - ACTIONS(751), 1, - sym_endmacro, - ACTIONS(781), 1, - sym_identifier, - STATE(170), 1, - sym_if_command, - STATE(197), 1, - sym_while_command, - STATE(198), 1, - sym_foreach_command, - STATE(199), 1, - sym_block_command, - STATE(221), 1, - sym_macro_command, - STATE(222), 1, - sym_function_command, - ACTIONS(778), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - STATE(268), 10, - sym_if_condition, - sym_foreach_loop, - sym_while_loop, - sym_function_def, - sym_macro_def, - sym_block_def, - sym_normal_command, - sym__command_invocation, - sym__untrimmed_command_invocation, - aux_sym_source_file_repeat1, - [16217] = 12, - ACTIONS(787), 1, - anon_sym_DOLLAR, - ACTIONS(790), 1, - anon_sym_GT, - ACTIONS(792), 1, - anon_sym_DQUOTE, - ACTIONS(795), 1, - aux_sym__unquoted_text_token1, - ACTIONS(798), 1, - sym_bracket_argument, - STATE(269), 1, - aux_sym__gen_exp_arguments_repeat1, - STATE(411), 1, - sym_argument, - STATE(409), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(417), 2, - sym__escape_encoded, - sym__escape_semicolon, - STATE(416), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(784), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(309), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [16268] = 12, - ACTIONS(803), 1, - anon_sym_DOLLAR, - ACTIONS(805), 1, - anon_sym_GT, - ACTIONS(807), 1, - anon_sym_DQUOTE, - ACTIONS(809), 1, - aux_sym__unquoted_text_token1, - ACTIONS(811), 1, - sym_bracket_argument, - STATE(746), 1, - sym_argument, - STATE(874), 1, - sym__gen_exp_content, - STATE(644), 2, - sym__escape_encoded, - sym__escape_semicolon, - STATE(735), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(645), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(801), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(315), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [16319] = 12, - ACTIONS(803), 1, - anon_sym_DOLLAR, - ACTIONS(807), 1, - anon_sym_DQUOTE, - ACTIONS(809), 1, - aux_sym__unquoted_text_token1, - ACTIONS(811), 1, - sym_bracket_argument, - ACTIONS(813), 1, - anon_sym_GT, - STATE(746), 1, - sym_argument, - STATE(854), 1, - sym__gen_exp_content, - STATE(644), 2, - sym__escape_encoded, - sym__escape_semicolon, - STATE(735), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(645), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(801), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(315), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [16370] = 12, - ACTIONS(817), 1, - anon_sym_DOLLAR, - ACTIONS(819), 1, - anon_sym_GT, - ACTIONS(821), 1, - anon_sym_DQUOTE, - ACTIONS(823), 1, - aux_sym__unquoted_text_token1, - ACTIONS(825), 1, - sym_bracket_argument, - STATE(278), 1, - aux_sym__gen_exp_arguments_repeat1, - STATE(411), 1, - sym_argument, - STATE(409), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(417), 2, - sym__escape_encoded, - sym__escape_semicolon, - STATE(416), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(815), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(309), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [16421] = 7, - ACTIONS(23), 1, - anon_sym_DOLLAR, - ACTIONS(829), 1, - aux_sym__unquoted_text_token1, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(21), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(279), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - ACTIONS(827), 7, - sym_bracket_argument, + STATE(123), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [9472] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(302), 1, + sym_identifier, + STATE(8), 1, + sym_if_command, + STATE(114), 1, + sym_foreach_command, + STATE(115), 1, + sym_while_command, + STATE(116), 1, + sym_function_command, + STATE(117), 1, + sym_macro_command, + STATE(118), 1, + sym_block_command, + STATE(659), 1, + sym_body, + ACTIONS(300), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DQUOTE, - [16462] = 12, - ACTIONS(803), 1, - anon_sym_DOLLAR, - ACTIONS(807), 1, - anon_sym_DQUOTE, - ACTIONS(809), 1, - aux_sym__unquoted_text_token1, - ACTIONS(811), 1, - sym_bracket_argument, - ACTIONS(831), 1, - anon_sym_GT, - STATE(746), 1, - sym_argument, - STATE(900), 1, - sym__gen_exp_content, - STATE(644), 2, - sym__escape_encoded, - sym__escape_semicolon, - STATE(735), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(645), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(801), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(315), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [16513] = 12, - ACTIONS(803), 1, - anon_sym_DOLLAR, - ACTIONS(807), 1, - anon_sym_DQUOTE, - ACTIONS(809), 1, - aux_sym__unquoted_text_token1, - ACTIONS(811), 1, - sym_bracket_argument, - ACTIONS(833), 1, - anon_sym_GT, - STATE(746), 1, - sym_argument, - STATE(851), 1, - sym__gen_exp_content, - STATE(644), 2, - sym__escape_encoded, - sym__escape_semicolon, - STATE(735), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(645), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(801), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(315), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [16564] = 12, - ACTIONS(803), 1, - anon_sym_DOLLAR, - ACTIONS(807), 1, - anon_sym_DQUOTE, - ACTIONS(809), 1, - aux_sym__unquoted_text_token1, - ACTIONS(811), 1, - sym_bracket_argument, - ACTIONS(835), 1, - anon_sym_GT, - STATE(746), 1, - sym_argument, - STATE(817), 1, - sym__gen_exp_content, - STATE(644), 2, - sym__escape_encoded, - sym__escape_semicolon, - STATE(735), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(645), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(801), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(315), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [16615] = 12, - ACTIONS(803), 1, - anon_sym_DOLLAR, - ACTIONS(807), 1, - anon_sym_DQUOTE, - ACTIONS(809), 1, - aux_sym__unquoted_text_token1, - ACTIONS(811), 1, - sym_bracket_argument, - ACTIONS(837), 1, - anon_sym_GT, - STATE(746), 1, - sym_argument, - STATE(840), 1, - sym__gen_exp_content, - STATE(644), 2, - sym__escape_encoded, - sym__escape_semicolon, - STATE(735), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(645), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(801), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(315), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [16666] = 12, - ACTIONS(817), 1, - anon_sym_DOLLAR, - ACTIONS(821), 1, - anon_sym_DQUOTE, - ACTIONS(823), 1, - aux_sym__unquoted_text_token1, - ACTIONS(825), 1, - sym_bracket_argument, - ACTIONS(839), 1, - anon_sym_GT, - STATE(269), 1, - aux_sym__gen_exp_arguments_repeat1, - STATE(411), 1, - sym_argument, - STATE(409), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(417), 2, - sym__escape_encoded, - sym__escape_semicolon, - STATE(416), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(815), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(309), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [16717] = 7, - ACTIONS(844), 1, - anon_sym_DOLLAR, - ACTIONS(849), 1, - aux_sym__unquoted_text_token1, - STATE(359), 2, - sym__escape_encoded, - sym__escape_semicolon, - STATE(355), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(841), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(279), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - ACTIONS(847), 7, - sym_bracket_argument, + STATE(155), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [9532] = 16, + ACTIONS(7), 1, + sym_if, + ACTIONS(9), 1, + sym_foreach, + ACTIONS(11), 1, + sym_while, + ACTIONS(13), 1, + sym_function, + ACTIONS(15), 1, + sym_macro, + ACTIONS(17), 1, + sym_block, + ACTIONS(294), 1, + sym_endfunction, + ACTIONS(302), 1, + sym_identifier, + STATE(8), 1, + sym_if_command, + STATE(114), 1, + sym_foreach_command, + STATE(115), 1, + sym_while_command, + STATE(116), 1, + sym_function_command, + STATE(117), 1, + sym_macro_command, + STATE(118), 1, + sym_block_command, + ACTIONS(366), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DQUOTE, - [16758] = 11, - ACTIONS(807), 1, - anon_sym_DQUOTE, - ACTIONS(811), 1, - sym_bracket_argument, - ACTIONS(854), 1, + STATE(133), 10, + sym_if_condition, + sym_foreach_loop, + sym_while_loop, + sym_function_def, + sym_macro_def, + sym_block_def, + sym_normal_command, + sym__command_invocation, + sym__untrimmed_command_invocation, + aux_sym_source_file_repeat1, + [9592] = 12, + ACTIONS(370), 1, anon_sym_DOLLAR, - ACTIONS(856), 1, - anon_sym_RPAREN, - ACTIONS(858), 1, + ACTIONS(372), 1, + anon_sym_GT, + ACTIONS(374), 1, + anon_sym_DQUOTE, + ACTIONS(376), 1, aux_sym__unquoted_text_token1, - STATE(818), 1, + ACTIONS(378), 1, + sym_bracket_argument, + STATE(621), 1, sym_argument, - STATE(657), 2, + STATE(808), 1, + sym__gen_exp_content, + STATE(488), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(735), 2, + STATE(534), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(658), 3, + STATE(490), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(852), 6, + ACTIONS(368), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(320), 6, + STATE(202), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [16806] = 11, - ACTIONS(807), 1, - anon_sym_DQUOTE, - ACTIONS(811), 1, - sym_bracket_argument, - ACTIONS(854), 1, + [9643] = 12, + ACTIONS(382), 1, anon_sym_DOLLAR, - ACTIONS(858), 1, + ACTIONS(384), 1, + anon_sym_GT, + ACTIONS(386), 1, + anon_sym_DQUOTE, + ACTIONS(388), 1, aux_sym__unquoted_text_token1, - ACTIONS(860), 1, - anon_sym_RPAREN, - STATE(836), 1, + ACTIONS(390), 1, + sym_bracket_argument, + STATE(162), 1, + aux_sym__gen_exp_arguments_repeat1, + STATE(298), 1, sym_argument, - STATE(657), 2, + STATE(291), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(735), 2, + STATE(297), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(658), 3, + STATE(292), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(852), 6, + ACTIONS(380), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(320), 6, + STATE(195), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [16854] = 11, - ACTIONS(807), 1, - anon_sym_DQUOTE, - ACTIONS(811), 1, - sym_bracket_argument, - ACTIONS(854), 1, + [9694] = 12, + ACTIONS(370), 1, anon_sym_DOLLAR, - ACTIONS(858), 1, + ACTIONS(374), 1, + anon_sym_DQUOTE, + ACTIONS(376), 1, aux_sym__unquoted_text_token1, - ACTIONS(862), 1, - anon_sym_RPAREN, - STATE(869), 1, + ACTIONS(378), 1, + sym_bracket_argument, + ACTIONS(392), 1, + anon_sym_GT, + STATE(621), 1, sym_argument, - STATE(657), 2, + STATE(840), 1, + sym__gen_exp_content, + STATE(488), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(735), 2, + STATE(534), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(658), 3, + STATE(490), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(852), 6, + ACTIONS(368), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(320), 6, + STATE(202), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [16902] = 11, - ACTIONS(807), 1, - anon_sym_DQUOTE, - ACTIONS(811), 1, - sym_bracket_argument, - ACTIONS(854), 1, + [9745] = 12, + ACTIONS(370), 1, anon_sym_DOLLAR, - ACTIONS(858), 1, + ACTIONS(374), 1, + anon_sym_DQUOTE, + ACTIONS(376), 1, aux_sym__unquoted_text_token1, - ACTIONS(864), 1, - anon_sym_RPAREN, - STATE(875), 1, + ACTIONS(378), 1, + sym_bracket_argument, + ACTIONS(394), 1, + anon_sym_GT, + STATE(621), 1, sym_argument, - STATE(657), 2, + STATE(778), 1, + sym__gen_exp_content, + STATE(488), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(735), 2, + STATE(534), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(658), 3, + STATE(490), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(852), 6, + ACTIONS(368), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(320), 6, + STATE(202), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [16950] = 11, - ACTIONS(807), 1, - anon_sym_DQUOTE, - ACTIONS(811), 1, - sym_bracket_argument, - ACTIONS(854), 1, + [9796] = 12, + ACTIONS(370), 1, anon_sym_DOLLAR, - ACTIONS(858), 1, + ACTIONS(374), 1, + anon_sym_DQUOTE, + ACTIONS(376), 1, aux_sym__unquoted_text_token1, - ACTIONS(866), 1, - anon_sym_RPAREN, - STATE(868), 1, + ACTIONS(378), 1, + sym_bracket_argument, + ACTIONS(396), 1, + anon_sym_GT, + STATE(621), 1, sym_argument, - STATE(657), 2, + STATE(733), 1, + sym__gen_exp_content, + STATE(488), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(735), 2, + STATE(534), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(658), 3, + STATE(490), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(852), 6, + ACTIONS(368), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(320), 6, + STATE(202), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [16998] = 11, - ACTIONS(807), 1, - anon_sym_DQUOTE, - ACTIONS(811), 1, - sym_bracket_argument, - ACTIONS(854), 1, + [9847] = 12, + ACTIONS(370), 1, anon_sym_DOLLAR, - ACTIONS(858), 1, + ACTIONS(374), 1, + anon_sym_DQUOTE, + ACTIONS(376), 1, aux_sym__unquoted_text_token1, - ACTIONS(868), 1, - anon_sym_RPAREN, - STATE(856), 1, + ACTIONS(378), 1, + sym_bracket_argument, + ACTIONS(398), 1, + anon_sym_GT, + STATE(621), 1, sym_argument, - STATE(657), 2, + STATE(806), 1, + sym__gen_exp_content, + STATE(488), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(735), 2, + STATE(534), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(658), 3, + STATE(490), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(852), 6, + ACTIONS(368), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(320), 6, + STATE(202), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [17046] = 11, - ACTIONS(807), 1, - anon_sym_DQUOTE, - ACTIONS(811), 1, - sym_bracket_argument, - ACTIONS(854), 1, + [9898] = 12, + ACTIONS(382), 1, anon_sym_DOLLAR, - ACTIONS(858), 1, + ACTIONS(386), 1, + anon_sym_DQUOTE, + ACTIONS(388), 1, aux_sym__unquoted_text_token1, - ACTIONS(870), 1, - anon_sym_RPAREN, - STATE(819), 1, + ACTIONS(390), 1, + sym_bracket_argument, + ACTIONS(400), 1, + anon_sym_GT, + STATE(164), 1, + aux_sym__gen_exp_arguments_repeat1, + STATE(298), 1, sym_argument, - STATE(657), 2, + STATE(291), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(735), 2, + STATE(297), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(658), 3, + STATE(292), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(852), 6, + ACTIONS(380), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(320), 6, + STATE(195), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [17094] = 11, - ACTIONS(807), 1, - anon_sym_DQUOTE, - ACTIONS(811), 1, - sym_bracket_argument, - ACTIONS(854), 1, + [9949] = 7, + ACTIONS(45), 1, anon_sym_DOLLAR, - ACTIONS(858), 1, + ACTIONS(404), 1, aux_sym__unquoted_text_token1, - ACTIONS(872), 1, - anon_sym_RPAREN, - STATE(871), 1, - sym_argument, - STATE(657), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(735), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(658), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(852), 6, + ACTIONS(43), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(320), 6, + STATE(165), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [17142] = 11, - ACTIONS(807), 1, - anon_sym_DQUOTE, - ACTIONS(811), 1, + ACTIONS(402), 7, sym_bracket_argument, - ACTIONS(854), 1, + sym_bracket_comment, + sym_line_comment, + aux_sym__untrimmed_argument_token1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DQUOTE, + [9990] = 12, + ACTIONS(409), 1, anon_sym_DOLLAR, - ACTIONS(858), 1, + ACTIONS(412), 1, + anon_sym_GT, + ACTIONS(414), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, aux_sym__unquoted_text_token1, - ACTIONS(874), 1, - anon_sym_RPAREN, - STATE(901), 1, + ACTIONS(420), 1, + sym_bracket_argument, + STATE(164), 1, + aux_sym__gen_exp_arguments_repeat1, + STATE(298), 1, sym_argument, - STATE(657), 2, + STATE(291), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(735), 2, + STATE(297), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(658), 3, + STATE(292), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(852), 6, + ACTIONS(406), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(320), 6, + STATE(195), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [17190] = 11, - ACTIONS(807), 1, - anon_sym_DQUOTE, - ACTIONS(811), 1, - sym_bracket_argument, - ACTIONS(854), 1, + [10041] = 7, + ACTIONS(426), 1, anon_sym_DOLLAR, - ACTIONS(858), 1, + ACTIONS(431), 1, aux_sym__unquoted_text_token1, - ACTIONS(876), 1, - anon_sym_RPAREN, - STATE(812), 1, - sym_argument, - STATE(657), 2, + STATE(241), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(735), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(658), 3, + STATE(246), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(852), 6, + ACTIONS(423), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(320), 6, + STATE(165), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [17238] = 11, - ACTIONS(807), 1, - anon_sym_DQUOTE, - ACTIONS(811), 1, + ACTIONS(429), 7, sym_bracket_argument, - ACTIONS(854), 1, + sym_bracket_comment, + sym_line_comment, + aux_sym__untrimmed_argument_token1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DQUOTE, + [10082] = 12, + ACTIONS(370), 1, anon_sym_DOLLAR, - ACTIONS(858), 1, + ACTIONS(374), 1, + anon_sym_DQUOTE, + ACTIONS(376), 1, aux_sym__unquoted_text_token1, - ACTIONS(878), 1, - anon_sym_RPAREN, - STATE(863), 1, + ACTIONS(378), 1, + sym_bracket_argument, + ACTIONS(434), 1, + anon_sym_GT, + STATE(621), 1, sym_argument, - STATE(657), 2, + STATE(764), 1, + sym__gen_exp_content, + STATE(488), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(735), 2, + STATE(534), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(658), 3, + STATE(490), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(852), 6, + ACTIONS(368), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(320), 6, + STATE(202), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [17286] = 11, - ACTIONS(807), 1, + [10133] = 11, + ACTIONS(374), 1, anon_sym_DQUOTE, - ACTIONS(811), 1, + ACTIONS(378), 1, sym_bracket_argument, - ACTIONS(854), 1, + ACTIONS(438), 1, anon_sym_DOLLAR, - ACTIONS(858), 1, - aux_sym__unquoted_text_token1, - ACTIONS(880), 1, + ACTIONS(440), 1, anon_sym_RPAREN, - STATE(893), 1, + ACTIONS(442), 1, + aux_sym__unquoted_text_token1, + STATE(746), 1, sym_argument, - STATE(657), 2, + STATE(503), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(735), 2, + STATE(534), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(658), 3, + STATE(502), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(852), 6, + ACTIONS(436), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(320), 6, + STATE(203), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [17334] = 11, - ACTIONS(807), 1, + [10181] = 11, + ACTIONS(374), 1, anon_sym_DQUOTE, - ACTIONS(811), 1, + ACTIONS(378), 1, sym_bracket_argument, - ACTIONS(854), 1, + ACTIONS(438), 1, anon_sym_DOLLAR, - ACTIONS(858), 1, + ACTIONS(442), 1, aux_sym__unquoted_text_token1, - ACTIONS(882), 1, + ACTIONS(444), 1, anon_sym_RPAREN, - STATE(833), 1, + STATE(863), 1, sym_argument, - STATE(657), 2, + STATE(503), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(735), 2, + STATE(534), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(658), 3, + STATE(502), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(852), 6, + ACTIONS(436), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(320), 6, + STATE(203), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [17382] = 11, - ACTIONS(807), 1, + [10229] = 11, + ACTIONS(374), 1, anon_sym_DQUOTE, - ACTIONS(811), 1, + ACTIONS(378), 1, sym_bracket_argument, - ACTIONS(854), 1, + ACTIONS(438), 1, anon_sym_DOLLAR, - ACTIONS(858), 1, + ACTIONS(442), 1, aux_sym__unquoted_text_token1, - ACTIONS(884), 1, + ACTIONS(446), 1, anon_sym_RPAREN, - STATE(832), 1, - sym_argument, - STATE(657), 2, - sym__escape_encoded, - sym__escape_semicolon, - STATE(735), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(658), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(852), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(320), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [17430] = 10, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, - anon_sym_DQUOTE, - ACTIONS(892), 1, - aux_sym__unquoted_text_token1, - ACTIONS(894), 1, - sym_bracket_argument, - STATE(839), 1, + STATE(728), 1, sym_argument, - STATE(671), 2, + STATE(503), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(835), 2, + STATE(534), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(672), 3, + STATE(502), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(886), 6, + ACTIONS(436), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(316), 6, + STATE(203), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [17475] = 10, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, + [10277] = 11, + ACTIONS(374), 1, anon_sym_DQUOTE, - ACTIONS(892), 1, - aux_sym__unquoted_text_token1, - ACTIONS(894), 1, + ACTIONS(378), 1, sym_bracket_argument, - STATE(821), 1, - sym_argument, - STATE(671), 2, - sym__escape_encoded, - sym__escape_semicolon, - STATE(835), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(672), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(886), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(316), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [17520] = 10, - ACTIONS(888), 1, + ACTIONS(438), 1, anon_sym_DOLLAR, - ACTIONS(890), 1, - anon_sym_DQUOTE, - ACTIONS(892), 1, + ACTIONS(442), 1, aux_sym__unquoted_text_token1, - ACTIONS(894), 1, - sym_bracket_argument, - STATE(892), 1, + ACTIONS(448), 1, + anon_sym_RPAREN, + STATE(789), 1, sym_argument, - STATE(671), 2, + STATE(503), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(835), 2, + STATE(534), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(672), 3, + STATE(502), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(886), 6, + ACTIONS(436), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(316), 6, + STATE(203), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [17565] = 10, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, + [10325] = 11, + ACTIONS(374), 1, anon_sym_DQUOTE, - ACTIONS(892), 1, - aux_sym__unquoted_text_token1, - ACTIONS(894), 1, + ACTIONS(378), 1, sym_bracket_argument, - STATE(858), 1, - sym_argument, - STATE(671), 2, - sym__escape_encoded, - sym__escape_semicolon, - STATE(835), 2, - sym_quoted_argument, - sym_unquoted_argument, - STATE(672), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(886), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - STATE(316), 6, - sym_escape_sequence, - sym_variable_ref, - sym_gen_exp, - sym__unquoted_text, - aux_sym_unquoted_argument_repeat1, - aux_sym__unquoted_text_repeat1, - [17610] = 10, - ACTIONS(888), 1, + ACTIONS(438), 1, anon_sym_DOLLAR, - ACTIONS(890), 1, - anon_sym_DQUOTE, - ACTIONS(892), 1, + ACTIONS(442), 1, aux_sym__unquoted_text_token1, - ACTIONS(894), 1, - sym_bracket_argument, - STATE(888), 1, + ACTIONS(450), 1, + anon_sym_RPAREN, + STATE(782), 1, sym_argument, - STATE(671), 2, + STATE(503), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(835), 2, + STATE(534), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(672), 3, + STATE(502), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(886), 6, + ACTIONS(436), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(316), 6, + STATE(203), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [17655] = 10, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, + [10373] = 11, + ACTIONS(374), 1, anon_sym_DQUOTE, - ACTIONS(892), 1, - aux_sym__unquoted_text_token1, - ACTIONS(894), 1, + ACTIONS(378), 1, sym_bracket_argument, - STATE(857), 1, + ACTIONS(438), 1, + anon_sym_DOLLAR, + ACTIONS(442), 1, + aux_sym__unquoted_text_token1, + ACTIONS(452), 1, + anon_sym_RPAREN, + STATE(692), 1, sym_argument, - STATE(671), 2, + STATE(503), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(835), 2, + STATE(534), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(672), 3, + STATE(502), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(886), 6, + ACTIONS(436), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(316), 6, + STATE(203), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [17700] = 10, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, + [10421] = 11, + ACTIONS(374), 1, anon_sym_DQUOTE, - ACTIONS(892), 1, - aux_sym__unquoted_text_token1, - ACTIONS(894), 1, + ACTIONS(378), 1, sym_bracket_argument, - STATE(896), 1, + ACTIONS(438), 1, + anon_sym_DOLLAR, + ACTIONS(442), 1, + aux_sym__unquoted_text_token1, + ACTIONS(454), 1, + anon_sym_RPAREN, + STATE(831), 1, sym_argument, - STATE(671), 2, + STATE(503), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(835), 2, + STATE(534), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(672), 3, + STATE(502), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(886), 6, + ACTIONS(436), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(316), 6, + STATE(203), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [17745] = 10, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, + [10469] = 11, + ACTIONS(374), 1, anon_sym_DQUOTE, - ACTIONS(892), 1, - aux_sym__unquoted_text_token1, - ACTIONS(894), 1, + ACTIONS(378), 1, sym_bracket_argument, - STATE(876), 1, + ACTIONS(438), 1, + anon_sym_DOLLAR, + ACTIONS(442), 1, + aux_sym__unquoted_text_token1, + ACTIONS(456), 1, + anon_sym_RPAREN, + STATE(838), 1, sym_argument, - STATE(671), 2, + STATE(503), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(835), 2, + STATE(534), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(672), 3, + STATE(502), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(886), 6, + ACTIONS(436), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(316), 6, + STATE(203), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [17790] = 10, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, + [10517] = 11, + ACTIONS(374), 1, anon_sym_DQUOTE, - ACTIONS(892), 1, - aux_sym__unquoted_text_token1, - ACTIONS(894), 1, + ACTIONS(378), 1, sym_bracket_argument, - STATE(877), 1, + ACTIONS(438), 1, + anon_sym_DOLLAR, + ACTIONS(442), 1, + aux_sym__unquoted_text_token1, + ACTIONS(458), 1, + anon_sym_RPAREN, + STATE(705), 1, sym_argument, - STATE(671), 2, + STATE(503), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(835), 2, + STATE(534), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(672), 3, + STATE(502), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(886), 6, + ACTIONS(436), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(316), 6, + STATE(203), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [17835] = 10, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, + [10565] = 11, + ACTIONS(374), 1, anon_sym_DQUOTE, - ACTIONS(892), 1, - aux_sym__unquoted_text_token1, - ACTIONS(894), 1, + ACTIONS(378), 1, sym_bracket_argument, - STATE(820), 1, + ACTIONS(438), 1, + anon_sym_DOLLAR, + ACTIONS(442), 1, + aux_sym__unquoted_text_token1, + ACTIONS(460), 1, + anon_sym_RPAREN, + STATE(762), 1, sym_argument, - STATE(671), 2, + STATE(503), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(835), 2, + STATE(534), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(672), 3, + STATE(502), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(886), 6, + ACTIONS(436), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(316), 6, + STATE(203), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [17880] = 10, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, + [10613] = 11, + ACTIONS(374), 1, anon_sym_DQUOTE, - ACTIONS(892), 1, - aux_sym__unquoted_text_token1, - ACTIONS(894), 1, + ACTIONS(378), 1, sym_bracket_argument, - STATE(838), 1, + ACTIONS(438), 1, + anon_sym_DOLLAR, + ACTIONS(442), 1, + aux_sym__unquoted_text_token1, + ACTIONS(462), 1, + anon_sym_RPAREN, + STATE(804), 1, sym_argument, - STATE(671), 2, + STATE(503), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(835), 2, + STATE(534), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(672), 3, + STATE(502), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(886), 6, + ACTIONS(436), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(316), 6, + STATE(203), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [17925] = 10, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, + [10661] = 11, + ACTIONS(374), 1, anon_sym_DQUOTE, - ACTIONS(892), 1, - aux_sym__unquoted_text_token1, - ACTIONS(894), 1, + ACTIONS(378), 1, sym_bracket_argument, - STATE(822), 1, + ACTIONS(438), 1, + anon_sym_DOLLAR, + ACTIONS(442), 1, + aux_sym__unquoted_text_token1, + ACTIONS(464), 1, + anon_sym_RPAREN, + STATE(714), 1, sym_argument, - STATE(671), 2, + STATE(503), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(835), 2, + STATE(534), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(672), 3, + STATE(502), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(886), 6, + ACTIONS(436), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(316), 6, + STATE(203), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [17970] = 10, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, + [10709] = 11, + ACTIONS(374), 1, anon_sym_DQUOTE, - ACTIONS(892), 1, - aux_sym__unquoted_text_token1, - ACTIONS(894), 1, + ACTIONS(378), 1, sym_bracket_argument, - STATE(811), 1, + ACTIONS(438), 1, + anon_sym_DOLLAR, + ACTIONS(442), 1, + aux_sym__unquoted_text_token1, + ACTIONS(466), 1, + anon_sym_RPAREN, + STATE(690), 1, sym_argument, - STATE(671), 2, + STATE(503), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(835), 2, + STATE(534), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(672), 3, + STATE(502), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(886), 6, + ACTIONS(436), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(316), 6, + STATE(203), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [18015] = 10, - ACTIONS(888), 1, - anon_sym_DOLLAR, - ACTIONS(890), 1, + [10757] = 11, + ACTIONS(374), 1, anon_sym_DQUOTE, - ACTIONS(892), 1, - aux_sym__unquoted_text_token1, - ACTIONS(894), 1, + ACTIONS(378), 1, sym_bracket_argument, - STATE(827), 1, + ACTIONS(438), 1, + anon_sym_DOLLAR, + ACTIONS(442), 1, + aux_sym__unquoted_text_token1, + ACTIONS(468), 1, + anon_sym_RPAREN, + STATE(822), 1, sym_argument, - STATE(671), 2, + STATE(503), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(835), 2, + STATE(534), 2, sym_quoted_argument, sym_unquoted_argument, - STATE(672), 3, + STATE(502), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(886), 6, + ACTIONS(436), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(316), 6, + STATE(203), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [18060] = 8, - ACTIONS(899), 1, + [10805] = 10, + ACTIONS(472), 1, anon_sym_DOLLAR, - ACTIONS(902), 1, - aux_sym__gen_exp_arguments_token1, - ACTIONS(904), 1, + ACTIONS(474), 1, + anon_sym_DQUOTE, + ACTIONS(476), 1, aux_sym__unquoted_text_token1, - STATE(417), 2, + ACTIONS(478), 1, + sym_bracket_argument, + STATE(794), 1, + sym_argument, + STATE(505), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(847), 3, - sym_bracket_argument, - anon_sym_GT, - anon_sym_DQUOTE, - STATE(416), 3, + STATE(825), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(507), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(896), 6, + ACTIONS(470), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(308), 6, + STATE(204), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [18100] = 8, - ACTIONS(817), 1, + [10850] = 10, + ACTIONS(472), 1, anon_sym_DOLLAR, - ACTIONS(907), 1, - aux_sym__gen_exp_arguments_token1, - ACTIONS(909), 1, + ACTIONS(474), 1, + anon_sym_DQUOTE, + ACTIONS(476), 1, aux_sym__unquoted_text_token1, - STATE(417), 2, + ACTIONS(478), 1, + sym_bracket_argument, + STATE(771), 1, + sym_argument, + STATE(505), 2, sym__escape_encoded, sym__escape_semicolon, - ACTIONS(827), 3, - sym_bracket_argument, - anon_sym_GT, - anon_sym_DQUOTE, - STATE(416), 3, + STATE(825), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(507), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(815), 6, + ACTIONS(470), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(308), 6, + STATE(204), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [18140] = 8, - ACTIONS(913), 1, + [10895] = 10, + ACTIONS(472), 1, anon_sym_DOLLAR, - ACTIONS(915), 1, + ACTIONS(474), 1, anon_sym_DQUOTE, - ACTIONS(917), 1, - aux_sym__quoted_text_token1, - STATE(847), 1, - sym_quoted_element, - STATE(650), 2, + ACTIONS(476), 1, + aux_sym__unquoted_text_token1, + ACTIONS(478), 1, + sym_bracket_argument, + STATE(842), 1, + sym_argument, + STATE(505), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(652), 3, + STATE(825), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(507), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(911), 6, + ACTIONS(470), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(318), 6, + STATE(204), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, - sym__quoted_text, - aux_sym_quoted_element_repeat1, - aux_sym__quoted_text_repeat1, - [18178] = 7, - ACTIONS(922), 1, + sym__unquoted_text, + aux_sym_unquoted_argument_repeat1, + aux_sym__unquoted_text_repeat1, + [10940] = 10, + ACTIONS(472), 1, anon_sym_DOLLAR, - ACTIONS(925), 1, + ACTIONS(474), 1, + anon_sym_DQUOTE, + ACTIONS(476), 1, aux_sym__unquoted_text_token1, - ACTIONS(847), 2, - anon_sym_GT, - anon_sym_COLON, - STATE(644), 2, + ACTIONS(478), 1, + sym_bracket_argument, + STATE(775), 1, + sym_argument, + STATE(505), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(645), 3, + STATE(825), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(507), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(919), 6, + ACTIONS(470), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(311), 6, + STATE(204), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [18214] = 8, - ACTIONS(913), 1, + [10985] = 10, + ACTIONS(472), 1, anon_sym_DOLLAR, - ACTIONS(917), 1, - aux_sym__quoted_text_token1, - ACTIONS(928), 1, + ACTIONS(474), 1, anon_sym_DQUOTE, - STATE(815), 1, - sym_quoted_element, - STATE(650), 2, + ACTIONS(476), 1, + aux_sym__unquoted_text_token1, + ACTIONS(478), 1, + sym_bracket_argument, + STATE(729), 1, + sym_argument, + STATE(505), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(652), 3, + STATE(825), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(507), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(911), 6, + ACTIONS(470), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(318), 6, + STATE(204), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, - sym__quoted_text, - aux_sym_quoted_element_repeat1, - aux_sym__quoted_text_repeat1, - [18252] = 8, - ACTIONS(913), 1, + sym__unquoted_text, + aux_sym_unquoted_argument_repeat1, + aux_sym__unquoted_text_repeat1, + [11030] = 10, + ACTIONS(472), 1, anon_sym_DOLLAR, - ACTIONS(917), 1, - aux_sym__quoted_text_token1, - ACTIONS(930), 1, + ACTIONS(474), 1, anon_sym_DQUOTE, - STATE(870), 1, - sym_quoted_element, - STATE(650), 2, + ACTIONS(476), 1, + aux_sym__unquoted_text_token1, + ACTIONS(478), 1, + sym_bracket_argument, + STATE(730), 1, + sym_argument, + STATE(505), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(652), 3, + STATE(825), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(507), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(911), 6, + ACTIONS(470), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(318), 6, + STATE(204), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, - sym__quoted_text, - aux_sym_quoted_element_repeat1, - aux_sym__quoted_text_repeat1, - [18290] = 8, - ACTIONS(913), 1, + sym__unquoted_text, + aux_sym_unquoted_argument_repeat1, + aux_sym__unquoted_text_repeat1, + [11075] = 10, + ACTIONS(472), 1, anon_sym_DOLLAR, - ACTIONS(917), 1, - aux_sym__quoted_text_token1, - ACTIONS(932), 1, + ACTIONS(474), 1, anon_sym_DQUOTE, - STATE(850), 1, - sym_quoted_element, - STATE(650), 2, + ACTIONS(476), 1, + aux_sym__unquoted_text_token1, + ACTIONS(478), 1, + sym_bracket_argument, + STATE(747), 1, + sym_argument, + STATE(505), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(652), 3, + STATE(825), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(507), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(911), 6, + ACTIONS(470), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(318), 6, + STATE(204), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, - sym__quoted_text, - aux_sym_quoted_element_repeat1, - aux_sym__quoted_text_repeat1, - [18328] = 7, - ACTIONS(803), 1, + sym__unquoted_text, + aux_sym_unquoted_argument_repeat1, + aux_sym__unquoted_text_repeat1, + [11120] = 10, + ACTIONS(472), 1, anon_sym_DOLLAR, - ACTIONS(934), 1, + ACTIONS(474), 1, + anon_sym_DQUOTE, + ACTIONS(476), 1, aux_sym__unquoted_text_token1, - ACTIONS(827), 2, - anon_sym_GT, - anon_sym_COLON, - STATE(644), 2, + ACTIONS(478), 1, + sym_bracket_argument, + STATE(819), 1, + sym_argument, + STATE(505), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(645), 3, + STATE(825), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(507), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(801), 6, + ACTIONS(470), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(311), 6, + STATE(204), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [18364] = 7, - ACTIONS(888), 1, + [11165] = 10, + ACTIONS(472), 1, anon_sym_DOLLAR, - ACTIONS(907), 1, - aux_sym_endwhile_command_token1, - ACTIONS(936), 1, + ACTIONS(474), 1, + anon_sym_DQUOTE, + ACTIONS(476), 1, aux_sym__unquoted_text_token1, - STATE(671), 2, + ACTIONS(478), 1, + sym_bracket_argument, + STATE(748), 1, + sym_argument, + STATE(505), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(672), 3, + STATE(825), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(507), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(886), 6, + ACTIONS(470), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(319), 6, + STATE(204), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [18399] = 7, - ACTIONS(941), 1, + [11210] = 10, + ACTIONS(472), 1, anon_sym_DOLLAR, - ACTIONS(944), 1, + ACTIONS(474), 1, anon_sym_DQUOTE, - ACTIONS(946), 1, - aux_sym__quoted_text_token1, - STATE(650), 2, + ACTIONS(476), 1, + aux_sym__unquoted_text_token1, + ACTIONS(478), 1, + sym_bracket_argument, + STATE(770), 1, + sym_argument, + STATE(505), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(652), 3, + STATE(825), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(507), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(938), 6, + ACTIONS(470), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(317), 6, + STATE(204), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, - sym__quoted_text, - aux_sym_quoted_element_repeat1, - aux_sym__quoted_text_repeat1, - [18434] = 7, - ACTIONS(913), 1, + sym__unquoted_text, + aux_sym_unquoted_argument_repeat1, + aux_sym__unquoted_text_repeat1, + [11255] = 10, + ACTIONS(472), 1, anon_sym_DOLLAR, - ACTIONS(949), 1, + ACTIONS(474), 1, anon_sym_DQUOTE, - ACTIONS(951), 1, - aux_sym__quoted_text_token1, - STATE(650), 2, + ACTIONS(476), 1, + aux_sym__unquoted_text_token1, + ACTIONS(478), 1, + sym_bracket_argument, + STATE(818), 1, + sym_argument, + STATE(505), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(652), 3, + STATE(825), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(507), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(911), 6, + ACTIONS(470), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(317), 6, + STATE(204), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, - sym__quoted_text, - aux_sym_quoted_element_repeat1, - aux_sym__quoted_text_repeat1, - [18469] = 7, - ACTIONS(902), 1, - aux_sym_endwhile_command_token1, - ACTIONS(956), 1, + sym__unquoted_text, + aux_sym_unquoted_argument_repeat1, + aux_sym__unquoted_text_repeat1, + [11300] = 10, + ACTIONS(472), 1, anon_sym_DOLLAR, - ACTIONS(959), 1, + ACTIONS(474), 1, + anon_sym_DQUOTE, + ACTIONS(476), 1, aux_sym__unquoted_text_token1, - STATE(671), 2, + ACTIONS(478), 1, + sym_bracket_argument, + STATE(795), 1, + sym_argument, + STATE(505), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(672), 3, + STATE(825), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(507), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(953), 6, + ACTIONS(470), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(319), 6, + STATE(204), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [18504] = 7, - ACTIONS(827), 1, - anon_sym_RPAREN, - ACTIONS(854), 1, + [11345] = 10, + ACTIONS(472), 1, anon_sym_DOLLAR, - ACTIONS(962), 1, + ACTIONS(474), 1, + anon_sym_DQUOTE, + ACTIONS(476), 1, aux_sym__unquoted_text_token1, - STATE(657), 2, + ACTIONS(478), 1, + sym_bracket_argument, + STATE(749), 1, + sym_argument, + STATE(505), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(658), 3, + STATE(825), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(507), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(852), 6, + ACTIONS(470), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(321), 6, + STATE(204), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [18539] = 7, - ACTIONS(847), 1, - anon_sym_RPAREN, - ACTIONS(967), 1, + [11390] = 10, + ACTIONS(472), 1, anon_sym_DOLLAR, - ACTIONS(970), 1, + ACTIONS(474), 1, + anon_sym_DQUOTE, + ACTIONS(476), 1, aux_sym__unquoted_text_token1, - STATE(657), 2, + ACTIONS(478), 1, + sym_bracket_argument, + STATE(843), 1, + sym_argument, + STATE(505), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(658), 3, + STATE(825), 2, + sym_quoted_argument, + sym_unquoted_argument, + STATE(507), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(964), 6, + ACTIONS(470), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - STATE(321), 6, + STATE(204), 6, sym_escape_sequence, sym_variable_ref, sym_gen_exp, sym__unquoted_text, aux_sym_unquoted_argument_repeat1, aux_sym__unquoted_text_repeat1, - [18574] = 6, - ACTIONS(975), 1, - anon_sym_LBRACE, - ACTIONS(977), 1, - anon_sym_ENV, - ACTIONS(979), 1, - anon_sym_CACHE, - ACTIONS(981), 1, - anon_sym_LT, - ACTIONS(983), 1, - aux_sym__unquoted_text_token1, - ACTIONS(973), 14, - sym_bracket_argument, - sym_bracket_comment, - sym_line_comment, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - aux_sym__untrimmed_argument_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DQUOTE, - [18606] = 7, - ACTIONS(987), 1, - aux_sym_variable_token1, - ACTIONS(989), 1, + [11435] = 8, + ACTIONS(382), 1, anon_sym_DOLLAR, - STATE(864), 1, - sym_variable, - STATE(664), 2, + ACTIONS(480), 1, + aux_sym__gen_exp_arguments_token1, + ACTIONS(482), 1, + aux_sym__unquoted_text_token1, + STATE(291), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(665), 3, + ACTIONS(402), 3, + sym_bracket_argument, + anon_sym_GT, + anon_sym_DQUOTE, + STATE(292), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(985), 6, + ACTIONS(380), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [18638] = 7, - ACTIONS(987), 1, - aux_sym_variable_token1, - ACTIONS(989), 1, + STATE(196), 6, + sym_escape_sequence, + sym_variable_ref, + sym_gen_exp, + sym__unquoted_text, + aux_sym_unquoted_argument_repeat1, + aux_sym__unquoted_text_repeat1, + [11475] = 8, + ACTIONS(487), 1, anon_sym_DOLLAR, - STATE(845), 1, - sym_variable, - STATE(664), 2, + ACTIONS(490), 1, + aux_sym__gen_exp_arguments_token1, + ACTIONS(492), 1, + aux_sym__unquoted_text_token1, + STATE(291), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(665), 3, + ACTIONS(429), 3, + sym_bracket_argument, + anon_sym_GT, + anon_sym_DQUOTE, + STATE(292), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(985), 6, + ACTIONS(484), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [18670] = 7, - ACTIONS(987), 1, - aux_sym_variable_token1, - ACTIONS(989), 1, + STATE(196), 6, + sym_escape_sequence, + sym_variable_ref, + sym_gen_exp, + sym__unquoted_text, + aux_sym_unquoted_argument_repeat1, + aux_sym__unquoted_text_repeat1, + [11515] = 8, + ACTIONS(497), 1, anon_sym_DOLLAR, - STATE(865), 1, - sym_variable, - STATE(664), 2, + ACTIONS(499), 1, + anon_sym_DQUOTE, + ACTIONS(501), 1, + aux_sym__quoted_text_token1, + STATE(774), 1, + sym_quoted_element, + STATE(520), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(665), 3, + STATE(515), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(985), 6, + ACTIONS(495), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [18702] = 7, - ACTIONS(987), 1, - aux_sym_variable_token1, - ACTIONS(989), 1, + STATE(205), 6, + sym_escape_sequence, + sym_variable_ref, + sym_gen_exp, + sym__quoted_text, + aux_sym_quoted_element_repeat1, + aux_sym__quoted_text_repeat1, + [11553] = 8, + ACTIONS(497), 1, anon_sym_DOLLAR, - STATE(853), 1, - sym_variable, - STATE(664), 2, + ACTIONS(501), 1, + aux_sym__quoted_text_token1, + ACTIONS(503), 1, + anon_sym_DQUOTE, + STATE(735), 1, + sym_quoted_element, + STATE(520), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(665), 3, + STATE(515), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(985), 6, + ACTIONS(495), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [18734] = 7, - ACTIONS(987), 1, - aux_sym_variable_token1, - ACTIONS(989), 1, + STATE(205), 6, + sym_escape_sequence, + sym_variable_ref, + sym_gen_exp, + sym__quoted_text, + aux_sym_quoted_element_repeat1, + aux_sym__quoted_text_repeat1, + [11591] = 8, + ACTIONS(497), 1, anon_sym_DOLLAR, - STATE(831), 1, - sym_variable, - STATE(664), 2, + ACTIONS(501), 1, + aux_sym__quoted_text_token1, + ACTIONS(505), 1, + anon_sym_DQUOTE, + STATE(812), 1, + sym_quoted_element, + STATE(520), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(665), 3, + STATE(515), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(985), 6, + ACTIONS(495), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [18766] = 7, - ACTIONS(987), 1, - aux_sym_variable_token1, - ACTIONS(989), 1, + STATE(205), 6, + sym_escape_sequence, + sym_variable_ref, + sym_gen_exp, + sym__quoted_text, + aux_sym_quoted_element_repeat1, + aux_sym__quoted_text_repeat1, + [11629] = 7, + ACTIONS(510), 1, anon_sym_DOLLAR, - STATE(834), 1, - sym_variable, - STATE(664), 2, + ACTIONS(513), 1, + aux_sym__unquoted_text_token1, + ACTIONS(429), 2, + anon_sym_GT, + anon_sym_COLON, + STATE(488), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(665), 3, + STATE(490), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(985), 6, + ACTIONS(507), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [18798] = 7, - ACTIONS(987), 1, - aux_sym_variable_token1, - ACTIONS(989), 1, + STATE(200), 6, + sym_escape_sequence, + sym_variable_ref, + sym_gen_exp, + sym__unquoted_text, + aux_sym_unquoted_argument_repeat1, + aux_sym__unquoted_text_repeat1, + [11665] = 8, + ACTIONS(497), 1, anon_sym_DOLLAR, - STATE(824), 1, - sym_variable, - STATE(664), 2, + ACTIONS(501), 1, + aux_sym__quoted_text_token1, + ACTIONS(516), 1, + anon_sym_DQUOTE, + STATE(854), 1, + sym_quoted_element, + STATE(520), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(665), 3, + STATE(515), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(985), 6, + ACTIONS(495), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [18830] = 7, - ACTIONS(987), 1, - aux_sym_variable_token1, - ACTIONS(989), 1, + STATE(205), 6, + sym_escape_sequence, + sym_variable_ref, + sym_gen_exp, + sym__quoted_text, + aux_sym_quoted_element_repeat1, + aux_sym__quoted_text_repeat1, + [11703] = 7, + ACTIONS(370), 1, anon_sym_DOLLAR, - STATE(823), 1, - sym_variable, - STATE(664), 2, + ACTIONS(518), 1, + aux_sym__unquoted_text_token1, + ACTIONS(402), 2, + anon_sym_GT, + anon_sym_COLON, + STATE(488), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(665), 3, + STATE(490), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(985), 6, + ACTIONS(368), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [18862] = 7, - ACTIONS(987), 1, - aux_sym_variable_token1, - ACTIONS(989), 1, + STATE(200), 6, + sym_escape_sequence, + sym_variable_ref, + sym_gen_exp, + sym__unquoted_text, + aux_sym_unquoted_argument_repeat1, + aux_sym__unquoted_text_repeat1, + [11739] = 7, + ACTIONS(402), 1, + anon_sym_RPAREN, + ACTIONS(438), 1, anon_sym_DOLLAR, - STATE(810), 1, - sym_variable, - STATE(664), 2, + ACTIONS(520), 1, + aux_sym__unquoted_text_token1, + STATE(503), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(665), 3, + STATE(502), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(985), 6, + ACTIONS(436), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [18894] = 7, - ACTIONS(987), 1, - aux_sym_variable_token1, - ACTIONS(989), 1, + STATE(206), 6, + sym_escape_sequence, + sym_variable_ref, + sym_gen_exp, + sym__unquoted_text, + aux_sym_unquoted_argument_repeat1, + aux_sym__unquoted_text_repeat1, + [11774] = 7, + ACTIONS(472), 1, anon_sym_DOLLAR, - STATE(846), 1, - sym_variable, - STATE(664), 2, + ACTIONS(480), 1, + aux_sym_endwhile_command_token1, + ACTIONS(522), 1, + aux_sym__unquoted_text_token1, + STATE(505), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(665), 3, + STATE(507), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(985), 6, + ACTIONS(470), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [18926] = 7, - ACTIONS(987), 1, - aux_sym_variable_token1, - ACTIONS(989), 1, + STATE(207), 6, + sym_escape_sequence, + sym_variable_ref, + sym_gen_exp, + sym__unquoted_text, + aux_sym_unquoted_argument_repeat1, + aux_sym__unquoted_text_repeat1, + [11809] = 7, + ACTIONS(497), 1, anon_sym_DOLLAR, - STATE(862), 1, - sym_variable, - STATE(664), 2, + ACTIONS(524), 1, + anon_sym_DQUOTE, + ACTIONS(526), 1, + aux_sym__quoted_text_token1, + STATE(520), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(665), 3, + STATE(515), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(985), 6, + ACTIONS(495), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [18958] = 7, - ACTIONS(987), 1, - aux_sym_variable_token1, - ACTIONS(989), 1, + STATE(208), 6, + sym_escape_sequence, + sym_variable_ref, + sym_gen_exp, + sym__quoted_text, + aux_sym_quoted_element_repeat1, + aux_sym__quoted_text_repeat1, + [11844] = 7, + ACTIONS(429), 1, + anon_sym_RPAREN, + ACTIONS(531), 1, anon_sym_DOLLAR, - STATE(852), 1, - sym_variable, - STATE(664), 2, + ACTIONS(534), 1, + aux_sym__unquoted_text_token1, + STATE(503), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(665), 3, + STATE(502), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(985), 6, + ACTIONS(528), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [18990] = 7, - ACTIONS(987), 1, - aux_sym_variable_token1, - ACTIONS(989), 1, + STATE(206), 6, + sym_escape_sequence, + sym_variable_ref, + sym_gen_exp, + sym__unquoted_text, + aux_sym_unquoted_argument_repeat1, + aux_sym__unquoted_text_repeat1, + [11879] = 7, + ACTIONS(490), 1, + aux_sym_endwhile_command_token1, + ACTIONS(540), 1, anon_sym_DOLLAR, - STATE(897), 1, - sym_variable, - STATE(664), 2, + ACTIONS(543), 1, + aux_sym__unquoted_text_token1, + STATE(505), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(665), 3, + STATE(507), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(985), 6, + ACTIONS(537), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [19022] = 7, - ACTIONS(987), 1, - aux_sym_variable_token1, - ACTIONS(989), 1, + STATE(207), 6, + sym_escape_sequence, + sym_variable_ref, + sym_gen_exp, + sym__unquoted_text, + aux_sym_unquoted_argument_repeat1, + aux_sym__unquoted_text_repeat1, + [11914] = 7, + ACTIONS(549), 1, anon_sym_DOLLAR, - STATE(881), 1, - sym_variable, - STATE(664), 2, + ACTIONS(552), 1, + anon_sym_DQUOTE, + ACTIONS(554), 1, + aux_sym__quoted_text_token1, + STATE(520), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, - sym_escape_sequence, - sym_variable_ref, - aux_sym_variable_repeat1, - STATE(665), 3, + STATE(515), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(985), 6, + ACTIONS(546), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [19054] = 7, - ACTIONS(989), 1, - anon_sym_DOLLAR, - ACTIONS(991), 1, - aux_sym_variable_token1, - ACTIONS(993), 1, - anon_sym_RBRACE, - STATE(664), 2, - sym__escape_encoded, - sym__escape_semicolon, - STATE(340), 3, + STATE(208), 6, sym_escape_sequence, sym_variable_ref, - aux_sym_variable_repeat1, - STATE(665), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(985), 6, + sym_gen_exp, + sym__quoted_text, + aux_sym_quoted_element_repeat1, + aux_sym__quoted_text_repeat1, + [11949] = 6, + ACTIONS(559), 1, + anon_sym_LBRACE, + ACTIONS(561), 1, + anon_sym_ENV, + ACTIONS(563), 1, + anon_sym_CACHE, + ACTIONS(565), 1, + anon_sym_LT, + ACTIONS(567), 1, + aux_sym__unquoted_text_token1, + ACTIONS(557), 14, + sym_bracket_argument, + sym_bracket_comment, + sym_line_comment, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [19086] = 7, - ACTIONS(987), 1, + anon_sym_DOLLAR, + aux_sym__untrimmed_argument_token1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DQUOTE, + [11981] = 7, + ACTIONS(571), 1, aux_sym_variable_token1, - ACTIONS(989), 1, + ACTIONS(573), 1, anon_sym_DOLLAR, - STATE(861), 1, + STATE(810), 1, sym_variable, - STATE(664), 2, + STATE(499), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, + STATE(219), 3, sym_escape_sequence, sym_variable_ref, aux_sym_variable_repeat1, - STATE(665), 3, + STATE(498), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(985), 6, + ACTIONS(569), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [19118] = 7, - ACTIONS(987), 1, + [12013] = 7, + ACTIONS(571), 1, aux_sym_variable_token1, - ACTIONS(989), 1, + ACTIONS(573), 1, anon_sym_DOLLAR, - STATE(844), 1, + STATE(790), 1, sym_variable, - STATE(664), 2, + STATE(499), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, + STATE(219), 3, sym_escape_sequence, sym_variable_ref, aux_sym_variable_repeat1, - STATE(665), 3, + STATE(498), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(985), 6, + ACTIONS(569), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [19150] = 7, - ACTIONS(998), 1, + [12045] = 7, + ACTIONS(571), 1, aux_sym_variable_token1, - ACTIONS(1001), 1, + ACTIONS(573), 1, anon_sym_DOLLAR, - ACTIONS(1004), 1, - anon_sym_RBRACE, - STATE(664), 2, + STATE(698), 1, + sym_variable, + STATE(499), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(340), 3, + STATE(219), 3, sym_escape_sequence, sym_variable_ref, aux_sym_variable_repeat1, - STATE(665), 3, + STATE(498), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(995), 6, + ACTIONS(569), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [19182] = 7, - ACTIONS(987), 1, + [12077] = 7, + ACTIONS(571), 1, aux_sym_variable_token1, - ACTIONS(989), 1, + ACTIONS(573), 1, anon_sym_DOLLAR, - STATE(843), 1, + STATE(807), 1, sym_variable, - STATE(664), 2, + STATE(499), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, + STATE(219), 3, sym_escape_sequence, sym_variable_ref, aux_sym_variable_repeat1, - STATE(665), 3, + STATE(498), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(985), 6, + ACTIONS(569), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [19214] = 7, - ACTIONS(987), 1, + [12109] = 7, + ACTIONS(571), 1, aux_sym_variable_token1, - ACTIONS(989), 1, + ACTIONS(573), 1, anon_sym_DOLLAR, - STATE(880), 1, + STATE(866), 1, sym_variable, - STATE(664), 2, + STATE(499), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, + STATE(219), 3, sym_escape_sequence, sym_variable_ref, aux_sym_variable_repeat1, - STATE(665), 3, + STATE(498), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(985), 6, + ACTIONS(569), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [19246] = 7, - ACTIONS(987), 1, + [12141] = 7, + ACTIONS(571), 1, aux_sym_variable_token1, - ACTIONS(989), 1, + ACTIONS(573), 1, anon_sym_DOLLAR, - STATE(873), 1, + STATE(791), 1, sym_variable, - STATE(664), 2, + STATE(499), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, + STATE(219), 3, sym_escape_sequence, sym_variable_ref, aux_sym_variable_repeat1, - STATE(665), 3, + STATE(498), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(985), 6, + ACTIONS(569), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [19278] = 7, - ACTIONS(987), 1, + [12173] = 7, + ACTIONS(571), 1, aux_sym_variable_token1, - ACTIONS(989), 1, + ACTIONS(573), 1, anon_sym_DOLLAR, - STATE(816), 1, + STATE(768), 1, sym_variable, - STATE(664), 2, + STATE(499), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, + STATE(219), 3, sym_escape_sequence, sym_variable_ref, aux_sym_variable_repeat1, - STATE(665), 3, + STATE(498), 3, sym_normal_var, sym_env_var, sym_cache_var, - ACTIONS(985), 6, + ACTIONS(569), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - [19310] = 7, - ACTIONS(987), 1, + [12205] = 7, + ACTIONS(571), 1, aux_sym_variable_token1, - ACTIONS(989), 1, + ACTIONS(573), 1, anon_sym_DOLLAR, - STATE(814), 1, + STATE(737), 1, sym_variable, - STATE(664), 2, + STATE(499), 2, sym__escape_encoded, sym__escape_semicolon, - STATE(337), 3, + STATE(219), 3, sym_escape_sequence, sym_variable_ref, aux_sym_variable_repeat1, - STATE(665), 3, - sym_normal_var, - sym_env_var, - sym_cache_var, - ACTIONS(985), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - [19342] = 4, - ACTIONS(1008), 1, - anon_sym_DOLLAR, - ACTIONS(1011), 1, - aux_sym__unquoted_text_token1, - STATE(346), 1, - aux_sym__unquoted_text_repeat1, - ACTIONS(1006), 13, - sym_bracket_argument, - sym_bracket_comment, - sym_line_comment, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - aux_sym__untrimmed_argument_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DQUOTE, - [19367] = 6, - ACTIONS(1014), 1, - anon_sym_LBRACE, - ACTIONS(1016), 1, - anon_sym_ENV, - ACTIONS(1018), 1, - anon_sym_CACHE, - ACTIONS(1020), 1, - anon_sym_LT, - ACTIONS(983), 2, - aux_sym__gen_exp_arguments_token1, - aux_sym__unquoted_text_token1, - ACTIONS(973), 10, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DQUOTE, - [19396] = 2, - ACTIONS(1024), 1, - aux_sym__unquoted_text_token1, - ACTIONS(1022), 14, - sym_bracket_argument, - sym_bracket_comment, - sym_line_comment, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - aux_sym__untrimmed_argument_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DQUOTE, - [19416] = 2, - ACTIONS(1028), 1, - aux_sym__unquoted_text_token1, - ACTIONS(1026), 14, - sym_bracket_argument, - sym_bracket_comment, - sym_line_comment, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - aux_sym__untrimmed_argument_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DQUOTE, - [19436] = 2, - ACTIONS(1032), 1, - aux_sym__unquoted_text_token1, - ACTIONS(1030), 14, - sym_bracket_argument, - sym_bracket_comment, - sym_line_comment, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - aux_sym__untrimmed_argument_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DQUOTE, - [19456] = 2, - ACTIONS(1036), 1, - aux_sym__unquoted_text_token1, - ACTIONS(1034), 14, - sym_bracket_argument, - sym_bracket_comment, - sym_line_comment, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - aux_sym__untrimmed_argument_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DQUOTE, - [19476] = 2, - ACTIONS(1040), 1, - aux_sym__unquoted_text_token1, - ACTIONS(1038), 14, - sym_bracket_argument, - sym_bracket_comment, - sym_line_comment, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - aux_sym__untrimmed_argument_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DQUOTE, - [19496] = 2, - ACTIONS(1044), 1, - aux_sym__unquoted_text_token1, - ACTIONS(1042), 14, - sym_bracket_argument, - sym_bracket_comment, - sym_line_comment, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - aux_sym__untrimmed_argument_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DQUOTE, - [19516] = 2, - ACTIONS(1048), 1, - aux_sym__unquoted_text_token1, - ACTIONS(1046), 14, - sym_bracket_argument, - sym_bracket_comment, - sym_line_comment, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - aux_sym__untrimmed_argument_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DQUOTE, - [19536] = 2, - ACTIONS(1052), 1, - aux_sym__unquoted_text_token1, - ACTIONS(1050), 14, - sym_bracket_argument, - sym_bracket_comment, - sym_line_comment, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - aux_sym__untrimmed_argument_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DQUOTE, - [19556] = 2, - ACTIONS(1056), 1, - aux_sym__unquoted_text_token1, - ACTIONS(1054), 14, - sym_bracket_argument, - sym_bracket_comment, - sym_line_comment, + STATE(498), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(569), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, + [12237] = 7, + ACTIONS(578), 1, + aux_sym_variable_token1, + ACTIONS(581), 1, anon_sym_DOLLAR, - aux_sym__untrimmed_argument_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DQUOTE, - [19576] = 2, - ACTIONS(1060), 1, - aux_sym__unquoted_text_token1, - ACTIONS(1058), 14, - sym_bracket_argument, - sym_bracket_comment, - sym_line_comment, + ACTIONS(584), 1, + anon_sym_RBRACE, + STATE(499), 2, + sym__escape_encoded, + sym__escape_semicolon, + STATE(218), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(498), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(575), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, + [12269] = 7, + ACTIONS(573), 1, anon_sym_DOLLAR, - aux_sym__untrimmed_argument_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DQUOTE, - [19596] = 2, - ACTIONS(1064), 1, - aux_sym__unquoted_text_token1, - ACTIONS(1062), 14, - sym_bracket_argument, - sym_bracket_comment, - sym_line_comment, + ACTIONS(586), 1, + aux_sym_variable_token1, + ACTIONS(588), 1, + anon_sym_RBRACE, + STATE(499), 2, + sym__escape_encoded, + sym__escape_semicolon, + STATE(218), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(498), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(569), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, + [12301] = 7, + ACTIONS(571), 1, + aux_sym_variable_token1, + ACTIONS(573), 1, anon_sym_DOLLAR, - aux_sym__untrimmed_argument_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DQUOTE, - [19616] = 2, - ACTIONS(1068), 1, - aux_sym__unquoted_text_token1, - ACTIONS(1066), 14, - sym_bracket_argument, - sym_bracket_comment, - sym_line_comment, + STATE(867), 1, + sym_variable, + STATE(499), 2, + sym__escape_encoded, + sym__escape_semicolon, + STATE(219), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(498), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(569), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, + [12333] = 7, + ACTIONS(571), 1, + aux_sym_variable_token1, + ACTIONS(573), 1, anon_sym_DOLLAR, - aux_sym__untrimmed_argument_token1, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DQUOTE, - [19636] = 6, - ACTIONS(983), 1, - aux_sym__unquoted_text_token1, - ACTIONS(1070), 1, - anon_sym_LBRACE, - ACTIONS(1072), 1, - anon_sym_ENV, - ACTIONS(1074), 1, - anon_sym_CACHE, - ACTIONS(1076), 1, - anon_sym_LT, - ACTIONS(973), 9, + STATE(755), 1, + sym_variable, + STATE(499), 2, + sym__escape_encoded, + sym__escape_semicolon, + STATE(219), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(498), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(569), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, + [12365] = 7, + ACTIONS(571), 1, + aux_sym_variable_token1, + ACTIONS(573), 1, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_COLON, - [19663] = 2, - ACTIONS(1078), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1080), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [19681] = 2, - ACTIONS(1082), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1084), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [19699] = 2, - ACTIONS(1086), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1088), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [19717] = 2, - ACTIONS(1090), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1092), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [19735] = 2, - ACTIONS(1094), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1096), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [19753] = 2, - ACTIONS(1098), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1100), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [19771] = 2, - ACTIONS(1102), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1104), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [19789] = 2, - ACTIONS(1106), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1108), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [19807] = 2, - ACTIONS(1110), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1112), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [19825] = 2, - ACTIONS(1114), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1116), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [19843] = 2, - ACTIONS(1118), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1120), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [19861] = 2, - ACTIONS(1122), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1124), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [19879] = 2, - ACTIONS(1126), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1128), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [19897] = 6, - ACTIONS(1130), 1, - anon_sym_LBRACE, - ACTIONS(1132), 1, - anon_sym_ENV, - ACTIONS(1134), 1, - anon_sym_CACHE, - ACTIONS(1136), 1, - anon_sym_LT, - ACTIONS(983), 2, - aux_sym__unquoted_text_token1, - aux_sym_endwhile_command_token1, - ACTIONS(973), 7, + STATE(743), 1, + sym_variable, + STATE(499), 2, + sym__escape_encoded, + sym__escape_semicolon, + STATE(219), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(498), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(569), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, + [12397] = 7, + ACTIONS(571), 1, + aux_sym_variable_token1, + ACTIONS(573), 1, anon_sym_DOLLAR, - [19923] = 2, - ACTIONS(1138), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1140), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [19941] = 2, - ACTIONS(1142), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1144), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [19959] = 2, - ACTIONS(1146), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1148), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [19977] = 2, - ACTIONS(1150), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1152), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [19995] = 6, - ACTIONS(983), 1, - aux_sym__unquoted_text_token1, - ACTIONS(1154), 1, - anon_sym_LBRACE, - ACTIONS(1156), 1, - anon_sym_ENV, - ACTIONS(1158), 1, - anon_sym_CACHE, - ACTIONS(1160), 1, - anon_sym_LT, - ACTIONS(973), 8, + STATE(832), 1, + sym_variable, + STATE(499), 2, + sym__escape_encoded, + sym__escape_semicolon, + STATE(219), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(498), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(569), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, + [12429] = 7, + ACTIONS(571), 1, + aux_sym_variable_token1, + ACTIONS(573), 1, anon_sym_DOLLAR, - anon_sym_RPAREN, - [20021] = 2, - ACTIONS(1162), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1164), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [20039] = 2, - ACTIONS(1166), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1168), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [20057] = 2, - ACTIONS(1170), 3, + STATE(765), 1, + sym_variable, + STATE(499), 2, + sym__escape_encoded, + sym__escape_semicolon, + STATE(219), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(498), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(569), 6, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + [12461] = 7, + ACTIONS(571), 1, + aux_sym_variable_token1, + ACTIONS(573), 1, + anon_sym_DOLLAR, + STATE(740), 1, + sym_variable, + STATE(499), 2, + sym__escape_encoded, + sym__escape_semicolon, + STATE(219), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(498), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(569), 6, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + [12493] = 7, + ACTIONS(571), 1, + aux_sym_variable_token1, + ACTIONS(573), 1, + anon_sym_DOLLAR, + STATE(841), 1, + sym_variable, + STATE(499), 2, + sym__escape_encoded, + sym__escape_semicolon, + STATE(219), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(498), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(569), 6, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + [12525] = 7, + ACTIONS(571), 1, + aux_sym_variable_token1, + ACTIONS(573), 1, + anon_sym_DOLLAR, + STATE(756), 1, + sym_variable, + STATE(499), 2, + sym__escape_encoded, + sym__escape_semicolon, + STATE(219), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(498), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(569), 6, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + [12557] = 7, + ACTIONS(571), 1, + aux_sym_variable_token1, + ACTIONS(573), 1, + anon_sym_DOLLAR, + STATE(833), 1, + sym_variable, + STATE(499), 2, + sym__escape_encoded, + sym__escape_semicolon, + STATE(219), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(498), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(569), 6, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + [12589] = 7, + ACTIONS(571), 1, + aux_sym_variable_token1, + ACTIONS(573), 1, + anon_sym_DOLLAR, + STATE(713), 1, + sym_variable, + STATE(499), 2, + sym__escape_encoded, + sym__escape_semicolon, + STATE(219), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(498), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(569), 6, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + [12621] = 7, + ACTIONS(571), 1, + aux_sym_variable_token1, + ACTIONS(573), 1, + anon_sym_DOLLAR, + STATE(712), 1, + sym_variable, + STATE(499), 2, + sym__escape_encoded, + sym__escape_semicolon, + STATE(219), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(498), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(569), 6, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + [12653] = 7, + ACTIONS(571), 1, + aux_sym_variable_token1, + ACTIONS(573), 1, + anon_sym_DOLLAR, + STATE(703), 1, + sym_variable, + STATE(499), 2, + sym__escape_encoded, + sym__escape_semicolon, + STATE(219), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(498), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(569), 6, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + [12685] = 7, + ACTIONS(571), 1, + aux_sym_variable_token1, + ACTIONS(573), 1, + anon_sym_DOLLAR, + STATE(779), 1, + sym_variable, + STATE(499), 2, + sym__escape_encoded, + sym__escape_semicolon, + STATE(219), 3, + sym_escape_sequence, + sym_variable_ref, + aux_sym_variable_repeat1, + STATE(498), 3, + sym_normal_var, + sym_env_var, + sym_cache_var, + ACTIONS(569), 6, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + [12717] = 4, + ACTIONS(592), 1, + anon_sym_DOLLAR, + ACTIONS(595), 1, + aux_sym__unquoted_text_token1, + STATE(233), 1, + aux_sym__unquoted_text_repeat1, + ACTIONS(590), 13, + sym_bracket_argument, sym_bracket_comment, sym_line_comment, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, aux_sym__untrimmed_argument_token1, - ACTIONS(1172), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [20075] = 5, - ACTIONS(1174), 1, - anon_sym_DOLLAR, - ACTIONS(1177), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DQUOTE, + [12742] = 6, + ACTIONS(598), 1, + anon_sym_LBRACE, + ACTIONS(600), 1, + anon_sym_ENV, + ACTIONS(602), 1, + anon_sym_CACHE, + ACTIONS(604), 1, + anon_sym_LT, + ACTIONS(567), 2, aux_sym__gen_exp_arguments_token1, - ACTIONS(1179), 1, aux_sym__unquoted_text_token1, - STATE(383), 1, - aux_sym__unquoted_text_repeat1, - ACTIONS(1006), 9, + ACTIONS(557), 10, sym_bracket_argument, sym__escape_identity, anon_sym_BSLASHt, @@ -19312,132 +13497,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, anon_sym_GT, anon_sym_DQUOTE, - [20099] = 2, - ACTIONS(1182), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1184), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [20117] = 2, - ACTIONS(1186), 3, + [12771] = 2, + ACTIONS(608), 1, + aux_sym__unquoted_text_token1, + ACTIONS(606), 14, + sym_bracket_argument, sym_bracket_comment, sym_line_comment, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, aux_sym__untrimmed_argument_token1, - ACTIONS(1188), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [20135] = 2, - ACTIONS(1190), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DQUOTE, + [12791] = 2, + ACTIONS(612), 1, + aux_sym__unquoted_text_token1, + ACTIONS(610), 14, + sym_bracket_argument, sym_bracket_comment, sym_line_comment, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, aux_sym__untrimmed_argument_token1, - ACTIONS(1192), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [20153] = 2, - ACTIONS(1194), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DQUOTE, + [12811] = 2, + ACTIONS(616), 1, + aux_sym__unquoted_text_token1, + ACTIONS(614), 14, + sym_bracket_argument, sym_bracket_comment, sym_line_comment, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, aux_sym__untrimmed_argument_token1, - ACTIONS(1196), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [20171] = 2, - ACTIONS(1198), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DQUOTE, + [12831] = 2, + ACTIONS(620), 1, + aux_sym__unquoted_text_token1, + ACTIONS(618), 14, + sym_bracket_argument, sym_bracket_comment, sym_line_comment, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, aux_sym__untrimmed_argument_token1, - ACTIONS(1200), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [20189] = 2, - ACTIONS(1202), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DQUOTE, + [12851] = 2, + ACTIONS(624), 1, + aux_sym__unquoted_text_token1, + ACTIONS(622), 14, + sym_bracket_argument, sym_bracket_comment, sym_line_comment, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, aux_sym__untrimmed_argument_token1, - ACTIONS(1204), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [20207] = 2, - ACTIONS(1206), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DQUOTE, + [12871] = 2, + ACTIONS(628), 1, + aux_sym__unquoted_text_token1, + ACTIONS(626), 14, + sym_bracket_argument, sym_bracket_comment, sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1208), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [20225] = 6, - ACTIONS(1212), 1, - anon_sym_LBRACE, - ACTIONS(1214), 1, - anon_sym_ENV, - ACTIONS(1216), 1, - anon_sym_CACHE, - ACTIONS(1218), 1, - anon_sym_LT, - ACTIONS(1220), 1, - aux_sym__quoted_text_token1, - ACTIONS(1210), 8, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -19445,109 +13604,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_BSLASH_SEMI, anon_sym_DOLLAR, + aux_sym__untrimmed_argument_token1, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DQUOTE, - [20251] = 2, - ACTIONS(1222), 3, + [12891] = 2, + ACTIONS(632), 1, + aux_sym__unquoted_text_token1, + ACTIONS(630), 14, + sym_bracket_argument, sym_bracket_comment, sym_line_comment, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, aux_sym__untrimmed_argument_token1, - ACTIONS(1224), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [20269] = 2, - ACTIONS(1226), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DQUOTE, + [12911] = 2, + ACTIONS(636), 1, + aux_sym__unquoted_text_token1, + ACTIONS(634), 14, + sym_bracket_argument, sym_bracket_comment, sym_line_comment, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, aux_sym__untrimmed_argument_token1, - ACTIONS(1228), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [20287] = 2, - ACTIONS(1230), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DQUOTE, + [12931] = 2, + ACTIONS(640), 1, + aux_sym__unquoted_text_token1, + ACTIONS(638), 14, + sym_bracket_argument, sym_bracket_comment, sym_line_comment, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, aux_sym__untrimmed_argument_token1, - ACTIONS(1232), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [20305] = 2, - ACTIONS(1234), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DQUOTE, + [12951] = 2, + ACTIONS(644), 1, + aux_sym__unquoted_text_token1, + ACTIONS(642), 14, + sym_bracket_argument, sym_bracket_comment, sym_line_comment, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, aux_sym__untrimmed_argument_token1, - ACTIONS(1236), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [20323] = 2, - ACTIONS(1238), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DQUOTE, + [12971] = 2, + ACTIONS(648), 1, + aux_sym__unquoted_text_token1, + ACTIONS(646), 14, + sym_bracket_argument, sym_bracket_comment, sym_line_comment, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, aux_sym__untrimmed_argument_token1, - ACTIONS(1240), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [20341] = 2, - ACTIONS(1242), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DQUOTE, + [12991] = 2, + ACTIONS(652), 1, + aux_sym__unquoted_text_token1, + ACTIONS(650), 14, + sym_bracket_argument, sym_bracket_comment, sym_line_comment, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, aux_sym__untrimmed_argument_token1, - ACTIONS(1244), 10, - sym_if, - sym_elseif, - sym_else, - sym_endif, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [20359] = 2, - ACTIONS(1246), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DQUOTE, + [13011] = 6, + ACTIONS(567), 1, + aux_sym__unquoted_text_token1, + ACTIONS(654), 1, + anon_sym_LBRACE, + ACTIONS(656), 1, + anon_sym_ENV, + ACTIONS(658), 1, + anon_sym_CACHE, + ACTIONS(660), 1, + anon_sym_LT, + ACTIONS(557), 9, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_COLON, + [13038] = 2, + ACTIONS(662), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1248), 10, + ACTIONS(664), 10, sym_if, sym_elseif, sym_else, @@ -19558,12 +13753,12 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [20377] = 2, - ACTIONS(1250), 3, + [13056] = 2, + ACTIONS(666), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1252), 10, + ACTIONS(668), 10, sym_if, sym_elseif, sym_else, @@ -19574,12 +13769,12 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [20395] = 2, - ACTIONS(1254), 3, + [13074] = 2, + ACTIONS(670), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1256), 10, + ACTIONS(672), 10, sym_if, sym_elseif, sym_else, @@ -19590,12 +13785,12 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [20413] = 2, - ACTIONS(1258), 3, + [13092] = 2, + ACTIONS(674), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1260), 10, + ACTIONS(676), 10, sym_if, sym_elseif, sym_else, @@ -19606,12 +13801,12 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [20431] = 2, - ACTIONS(1262), 3, + [13110] = 2, + ACTIONS(678), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1264), 10, + ACTIONS(680), 10, sym_if, sym_elseif, sym_else, @@ -19622,12 +13817,12 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [20449] = 2, - ACTIONS(1266), 3, + [13128] = 2, + ACTIONS(682), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1268), 10, + ACTIONS(684), 10, sym_if, sym_elseif, sym_else, @@ -19638,12 +13833,32 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [20467] = 2, - ACTIONS(1270), 3, + [13146] = 6, + ACTIONS(688), 1, + anon_sym_LBRACE, + ACTIONS(690), 1, + anon_sym_ENV, + ACTIONS(692), 1, + anon_sym_CACHE, + ACTIONS(694), 1, + anon_sym_LT, + ACTIONS(696), 1, + aux_sym__quoted_text_token1, + ACTIONS(686), 8, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + [13172] = 2, + ACTIONS(698), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1272), 10, + ACTIONS(700), 10, sym_if, sym_elseif, sym_else, @@ -19654,12 +13869,32 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [20485] = 2, - ACTIONS(1274), 3, + [13190] = 6, + ACTIONS(567), 1, + aux_sym__unquoted_text_token1, + ACTIONS(702), 1, + anon_sym_LBRACE, + ACTIONS(704), 1, + anon_sym_ENV, + ACTIONS(706), 1, + anon_sym_CACHE, + ACTIONS(708), 1, + anon_sym_LT, + ACTIONS(557), 8, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, + anon_sym_RPAREN, + [13216] = 2, + ACTIONS(710), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1276), 10, + ACTIONS(712), 10, sym_if, sym_elseif, sym_else, @@ -19670,12 +13905,12 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [20503] = 2, - ACTIONS(1278), 3, + [13234] = 2, + ACTIONS(714), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1280), 10, + ACTIONS(716), 10, sym_if, sym_elseif, sym_else, @@ -19686,572 +13921,663 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [20521] = 2, - ACTIONS(1282), 3, + [13252] = 2, + ACTIONS(718), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1284), 10, + ACTIONS(720), 10, sym_if, sym_elseif, sym_else, sym_endif, sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_identifier, - [20539] = 2, - ACTIONS(1048), 2, - aux_sym__gen_exp_arguments_token1, - aux_sym__unquoted_text_token1, - ACTIONS(1046), 10, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DQUOTE, - [20556] = 2, - ACTIONS(1044), 2, - aux_sym__gen_exp_arguments_token1, - aux_sym__unquoted_text_token1, - ACTIONS(1042), 10, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DQUOTE, - [20573] = 2, - ACTIONS(1024), 2, - aux_sym__gen_exp_arguments_token1, - aux_sym__unquoted_text_token1, - ACTIONS(1022), 10, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DQUOTE, - [20590] = 3, - ACTIONS(1288), 1, - aux_sym__gen_exp_arguments_token1, - ACTIONS(1290), 1, - aux_sym__unquoted_text_token1, - ACTIONS(1286), 10, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DQUOTE, - [20609] = 2, - ACTIONS(1064), 2, - aux_sym__gen_exp_arguments_token1, - aux_sym__unquoted_text_token1, - ACTIONS(1062), 10, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DQUOTE, - [20626] = 2, - ACTIONS(1036), 2, - aux_sym__gen_exp_arguments_token1, - aux_sym__unquoted_text_token1, - ACTIONS(1034), 10, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DQUOTE, - [20643] = 2, - ACTIONS(1032), 2, - aux_sym__gen_exp_arguments_token1, - aux_sym__unquoted_text_token1, - ACTIONS(1030), 10, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DQUOTE, - [20660] = 2, - ACTIONS(1040), 2, - aux_sym__gen_exp_arguments_token1, - aux_sym__unquoted_text_token1, - ACTIONS(1038), 10, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DQUOTE, - [20677] = 2, - ACTIONS(1052), 2, - aux_sym__gen_exp_arguments_token1, - aux_sym__unquoted_text_token1, - ACTIONS(1050), 10, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DQUOTE, - [20694] = 2, - ACTIONS(1068), 2, - aux_sym__gen_exp_arguments_token1, - aux_sym__unquoted_text_token1, - ACTIONS(1066), 10, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DQUOTE, - [20711] = 2, - ACTIONS(1056), 2, - aux_sym__gen_exp_arguments_token1, - aux_sym__unquoted_text_token1, - ACTIONS(1054), 10, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DQUOTE, - [20728] = 2, - ACTIONS(1278), 3, + sym_while, + sym_function, + sym_macro, + sym_block, + sym_identifier, + [13270] = 2, + ACTIONS(722), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1280), 8, + ACTIONS(724), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [20744] = 2, - ACTIONS(1234), 3, + [13288] = 2, + ACTIONS(726), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1236), 8, + ACTIONS(728), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, - sym_endfunction, sym_macro, sym_block, sym_identifier, - [20760] = 2, - ACTIONS(1170), 3, + [13306] = 2, + ACTIONS(730), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1172), 8, + ACTIONS(732), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [20776] = 2, - ACTIONS(1182), 3, + [13324] = 2, + ACTIONS(734), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1184), 8, + ACTIONS(736), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [20792] = 2, - ACTIONS(1186), 3, + [13342] = 2, + ACTIONS(738), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1188), 8, + ACTIONS(740), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [20808] = 2, - ACTIONS(1190), 3, + [13360] = 2, + ACTIONS(742), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1192), 8, + ACTIONS(744), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [20824] = 2, - ACTIONS(1194), 3, + [13378] = 2, + ACTIONS(746), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1196), 8, + ACTIONS(748), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [20840] = 2, - ACTIONS(1198), 3, + [13396] = 2, + ACTIONS(750), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1200), 8, + ACTIONS(752), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [20856] = 2, - ACTIONS(1206), 3, + [13414] = 2, + ACTIONS(754), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1208), 8, + ACTIONS(756), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [20872] = 2, - ACTIONS(1082), 3, + [13432] = 2, + ACTIONS(758), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1084), 8, + ACTIONS(760), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [20888] = 2, - ACTIONS(1222), 3, + [13450] = 2, + ACTIONS(762), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1224), 8, + ACTIONS(764), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [20904] = 2, - ACTIONS(1226), 3, + [13468] = 2, + ACTIONS(766), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1228), 8, + ACTIONS(768), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [20920] = 2, - ACTIONS(1230), 3, + [13486] = 2, + ACTIONS(770), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1232), 8, + ACTIONS(772), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [20936] = 2, - ACTIONS(1234), 3, + [13504] = 2, + ACTIONS(774), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1236), 8, + ACTIONS(776), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [20952] = 2, - ACTIONS(1238), 3, + [13522] = 2, + ACTIONS(778), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1240), 8, + ACTIONS(780), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [20968] = 2, - ACTIONS(1242), 3, + [13540] = 2, + ACTIONS(782), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1244), 8, + ACTIONS(784), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [20984] = 2, - ACTIONS(1246), 3, + [13558] = 2, + ACTIONS(786), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1248), 8, + ACTIONS(788), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [21000] = 2, - ACTIONS(1250), 3, + [13576] = 2, + ACTIONS(790), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1252), 8, + ACTIONS(792), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [21016] = 2, - ACTIONS(1090), 3, + [13594] = 2, + ACTIONS(794), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1092), 8, + ACTIONS(796), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [21032] = 2, - ACTIONS(1258), 3, + [13612] = 2, + ACTIONS(798), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1260), 8, + ACTIONS(800), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [21048] = 2, - ACTIONS(1262), 3, + [13630] = 2, + ACTIONS(802), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1264), 8, + ACTIONS(804), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [21064] = 2, - ACTIONS(1266), 3, + [13648] = 2, + ACTIONS(806), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1268), 8, + ACTIONS(808), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [21080] = 2, - ACTIONS(1250), 3, + [13666] = 2, + ACTIONS(810), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1252), 8, + ACTIONS(812), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, - sym_endforeach, sym_while, sym_function, sym_macro, sym_block, sym_identifier, - [21096] = 2, - ACTIONS(1270), 3, + [13684] = 5, + ACTIONS(814), 1, + anon_sym_DOLLAR, + ACTIONS(817), 1, + aux_sym__gen_exp_arguments_token1, + ACTIONS(819), 1, + aux_sym__unquoted_text_token1, + STATE(283), 1, + aux_sym__unquoted_text_repeat1, + ACTIONS(590), 9, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_GT, + anon_sym_DQUOTE, + [13708] = 2, + ACTIONS(822), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1272), 8, + ACTIONS(824), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [21112] = 2, - ACTIONS(1274), 3, + [13726] = 6, + ACTIONS(826), 1, + anon_sym_LBRACE, + ACTIONS(828), 1, + anon_sym_ENV, + ACTIONS(830), 1, + anon_sym_CACHE, + ACTIONS(832), 1, + anon_sym_LT, + ACTIONS(567), 2, + aux_sym__unquoted_text_token1, + aux_sym_endwhile_command_token1, + ACTIONS(557), 7, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, + [13752] = 2, + ACTIONS(834), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1276), 8, + ACTIONS(836), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [21128] = 2, - ACTIONS(1278), 3, + [13770] = 2, + ACTIONS(838), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1280), 8, + ACTIONS(840), 10, sym_if, + sym_elseif, + sym_else, + sym_endif, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [21144] = 2, - ACTIONS(1282), 3, + [13788] = 2, + ACTIONS(636), 2, + aux_sym__gen_exp_arguments_token1, + aux_sym__unquoted_text_token1, + ACTIONS(634), 10, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DQUOTE, + [13805] = 2, + ACTIONS(608), 2, + aux_sym__gen_exp_arguments_token1, + aux_sym__unquoted_text_token1, + ACTIONS(606), 10, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DQUOTE, + [13822] = 2, + ACTIONS(624), 2, + aux_sym__gen_exp_arguments_token1, + aux_sym__unquoted_text_token1, + ACTIONS(622), 10, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DQUOTE, + [13839] = 2, + ACTIONS(632), 2, + aux_sym__gen_exp_arguments_token1, + aux_sym__unquoted_text_token1, + ACTIONS(630), 10, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DQUOTE, + [13856] = 2, + ACTIONS(652), 2, + aux_sym__gen_exp_arguments_token1, + aux_sym__unquoted_text_token1, + ACTIONS(650), 10, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DQUOTE, + [13873] = 2, + ACTIONS(648), 2, + aux_sym__gen_exp_arguments_token1, + aux_sym__unquoted_text_token1, + ACTIONS(646), 10, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DQUOTE, + [13890] = 2, + ACTIONS(612), 2, + aux_sym__gen_exp_arguments_token1, + aux_sym__unquoted_text_token1, + ACTIONS(610), 10, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DQUOTE, + [13907] = 2, + ACTIONS(644), 2, + aux_sym__gen_exp_arguments_token1, + aux_sym__unquoted_text_token1, + ACTIONS(642), 10, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DQUOTE, + [13924] = 2, + ACTIONS(616), 2, + aux_sym__gen_exp_arguments_token1, + aux_sym__unquoted_text_token1, + ACTIONS(614), 10, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DQUOTE, + [13941] = 2, + ACTIONS(628), 2, + aux_sym__gen_exp_arguments_token1, + aux_sym__unquoted_text_token1, + ACTIONS(626), 10, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DQUOTE, + [13958] = 3, + ACTIONS(844), 1, + aux_sym__gen_exp_arguments_token1, + ACTIONS(846), 1, + aux_sym__unquoted_text_token1, + ACTIONS(842), 10, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DQUOTE, + [13977] = 2, + ACTIONS(770), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1284), 8, + ACTIONS(772), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, + sym_endblock, sym_identifier, - [21160] = 2, - ACTIONS(1254), 3, + [13993] = 2, + ACTIONS(726), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1256), 8, + ACTIONS(728), 8, sym_if, sym_foreach, sym_while, @@ -20260,12 +14586,12 @@ static const uint16_t ts_small_parse_table[] = { sym_endmacro, sym_block, sym_identifier, - [21176] = 2, - ACTIONS(1246), 3, + [14009] = 2, + ACTIONS(726), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1248), 8, + ACTIONS(728), 8, sym_if, sym_foreach, sym_endforeach, @@ -20274,12 +14600,12 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [21192] = 2, - ACTIONS(1242), 3, + [14025] = 2, + ACTIONS(722), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1244), 8, + ACTIONS(724), 8, sym_if, sym_foreach, sym_endforeach, @@ -20288,138 +14614,56 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [21208] = 2, - ACTIONS(1202), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1204), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_block, - sym_identifier, - [21224] = 2, - ACTIONS(1162), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1164), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_block, - sym_identifier, - [21240] = 2, - ACTIONS(1122), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1124), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_endblock, - sym_identifier, - [21256] = 2, - ACTIONS(1126), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1128), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_endblock, - sym_identifier, - [21272] = 2, - ACTIONS(1138), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1140), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_endblock, - sym_identifier, - [21288] = 2, - ACTIONS(1142), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1144), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_endblock, - sym_identifier, - [21304] = 2, - ACTIONS(1146), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1148), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_endblock, - sym_identifier, - [21320] = 2, - ACTIONS(1150), 3, + [14041] = 2, + ACTIONS(718), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1152), 8, + ACTIONS(720), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21336] = 2, - ACTIONS(1274), 3, + [14057] = 2, + ACTIONS(698), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1276), 8, + ACTIONS(700), 7, sym_if, sym_foreach, sym_while, sym_function, - sym_endfunction, sym_macro, sym_block, sym_identifier, - [21352] = 2, - ACTIONS(1090), 3, + [14073] = 4, + ACTIONS(848), 1, + anon_sym_DOLLAR, + ACTIONS(851), 1, + aux_sym__unquoted_text_token1, + STATE(305), 1, + aux_sym__unquoted_text_repeat1, + ACTIONS(590), 8, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_GT, + anon_sym_COLON, + [14093] = 2, + ACTIONS(714), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1092), 8, + ACTIONS(716), 8, sym_if, sym_foreach, sym_endforeach, @@ -20428,390 +14672,390 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [21368] = 2, - ACTIONS(1166), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1168), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_endblock, - sym_identifier, - [21384] = 2, - ACTIONS(1170), 3, + [14109] = 2, + ACTIONS(774), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1172), 8, + ACTIONS(776), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21400] = 2, - ACTIONS(1182), 3, + [14125] = 2, + ACTIONS(670), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1184), 8, + ACTIONS(672), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21416] = 2, - ACTIONS(1186), 3, + [14141] = 2, + ACTIONS(674), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1188), 8, + ACTIONS(676), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21432] = 2, - ACTIONS(1190), 3, + [14157] = 2, + ACTIONS(678), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1192), 8, + ACTIONS(680), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21448] = 2, - ACTIONS(1194), 3, + [14173] = 2, + ACTIONS(682), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1196), 8, + ACTIONS(684), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21464] = 2, - ACTIONS(1198), 3, + [14189] = 2, + ACTIONS(750), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1200), 8, + ACTIONS(752), 8, sym_if, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21480] = 2, - ACTIONS(1206), 3, + [14205] = 2, + ACTIONS(682), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1208), 8, + ACTIONS(684), 7, sym_if, sym_foreach, sym_while, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21496] = 2, - ACTIONS(1082), 3, + [14221] = 2, + ACTIONS(854), 1, + aux_sym__unquoted_text_token1, + ACTIONS(412), 10, + sym_bracket_argument, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DQUOTE, + [14237] = 2, + ACTIONS(698), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1084), 8, + ACTIONS(700), 8, sym_if, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21512] = 2, - ACTIONS(1222), 3, + [14253] = 2, + ACTIONS(786), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1224), 8, + ACTIONS(788), 8, sym_if, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21528] = 2, - ACTIONS(1226), 3, + [14269] = 2, + ACTIONS(798), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1228), 8, + ACTIONS(800), 8, sym_if, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21544] = 2, - ACTIONS(1230), 3, + [14285] = 2, + ACTIONS(802), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1232), 8, + ACTIONS(804), 8, sym_if, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21560] = 2, - ACTIONS(1234), 3, + [14301] = 2, + ACTIONS(810), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1236), 8, + ACTIONS(812), 8, sym_if, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21576] = 2, - ACTIONS(1238), 3, + [14317] = 2, + ACTIONS(838), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1240), 8, + ACTIONS(840), 8, sym_if, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21592] = 2, - ACTIONS(1242), 3, + [14333] = 2, + ACTIONS(834), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1244), 8, + ACTIONS(836), 8, sym_if, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21608] = 2, - ACTIONS(1246), 3, + [14349] = 2, + ACTIONS(678), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1248), 8, + ACTIONS(680), 7, sym_if, sym_foreach, sym_while, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21624] = 2, - ACTIONS(1250), 3, + [14365] = 2, + ACTIONS(794), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1252), 8, + ACTIONS(796), 8, sym_if, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21640] = 2, - ACTIONS(1090), 3, + [14381] = 2, + ACTIONS(778), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1092), 8, + ACTIONS(780), 8, sym_if, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21656] = 2, - ACTIONS(1258), 3, + [14397] = 2, + ACTIONS(670), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1260), 8, + ACTIONS(672), 7, sym_if, sym_foreach, sym_while, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21672] = 2, - ACTIONS(1262), 3, + [14413] = 2, + ACTIONS(770), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1264), 8, + ACTIONS(772), 8, sym_if, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21688] = 2, - ACTIONS(1266), 3, + [14429] = 2, + ACTIONS(766), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1268), 8, + ACTIONS(768), 8, sym_if, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21704] = 2, - ACTIONS(1258), 3, + [14445] = 2, + ACTIONS(762), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1260), 8, + ACTIONS(764), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [21720] = 2, - ACTIONS(1270), 3, + [14461] = 2, + ACTIONS(758), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1272), 8, + ACTIONS(760), 8, sym_if, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21736] = 2, - ACTIONS(1274), 3, + [14477] = 2, + ACTIONS(754), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1276), 8, + ACTIONS(756), 8, sym_if, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21752] = 2, - ACTIONS(1266), 3, + [14493] = 2, + ACTIONS(662), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1268), 8, + ACTIONS(664), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [21768] = 2, - ACTIONS(1282), 3, + [14509] = 2, + ACTIONS(746), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1284), 8, + ACTIONS(748), 8, sym_if, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21784] = 2, - ACTIONS(1254), 3, + [14525] = 2, + ACTIONS(774), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1256), 8, + ACTIONS(776), 7, sym_if, sym_foreach, sym_while, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21800] = 2, - ACTIONS(1262), 3, + [14541] = 2, + ACTIONS(750), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1264), 8, + ACTIONS(752), 8, sym_if, sym_foreach, sym_endforeach, @@ -20820,406 +15064,362 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [21816] = 2, - ACTIONS(1150), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1152), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_endmacro, - sym_block, - sym_identifier, - [21832] = 2, - ACTIONS(1202), 3, - sym_bracket_comment, - sym_line_comment, - aux_sym__untrimmed_argument_token1, - ACTIONS(1204), 8, - sym_if, - sym_foreach, - sym_while, - sym_function, - sym_macro, - sym_block, - sym_endblock, - sym_identifier, - [21848] = 2, - ACTIONS(1162), 3, + [14557] = 2, + ACTIONS(738), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1164), 8, + ACTIONS(740), 8, sym_if, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [21864] = 2, - ACTIONS(1238), 3, + [14573] = 2, + ACTIONS(734), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1240), 8, + ACTIONS(736), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [21880] = 2, - ACTIONS(1234), 3, + [14589] = 2, + ACTIONS(730), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1236), 8, + ACTIONS(732), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [21896] = 2, - ACTIONS(1230), 3, + [14605] = 2, + ACTIONS(726), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1232), 8, + ACTIONS(728), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [21912] = 2, - ACTIONS(1226), 3, + [14621] = 2, + ACTIONS(722), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1228), 8, + ACTIONS(724), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [21928] = 2, - ACTIONS(1222), 3, + [14637] = 2, + ACTIONS(718), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1224), 8, + ACTIONS(720), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [21944] = 2, - ACTIONS(1082), 3, + [14653] = 2, + ACTIONS(786), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1084), 8, + ACTIONS(788), 7, sym_if, sym_foreach, - sym_endforeach, sym_while, sym_function, sym_macro, sym_block, sym_identifier, - [21960] = 2, - ACTIONS(1206), 3, + [14669] = 2, + ACTIONS(798), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1208), 8, + ACTIONS(800), 7, sym_if, sym_foreach, - sym_endforeach, sym_while, sym_function, sym_macro, sym_block, sym_identifier, - [21976] = 4, - ACTIONS(1292), 1, - anon_sym_DOLLAR, - ACTIONS(1295), 1, - aux_sym__unquoted_text_token1, - STATE(497), 1, - aux_sym__unquoted_text_repeat1, - ACTIONS(1006), 8, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_GT, - anon_sym_COLON, - [21996] = 2, - ACTIONS(1198), 3, + [14685] = 2, + ACTIONS(714), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1200), 8, + ACTIONS(716), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [22012] = 2, - ACTIONS(1146), 3, + [14701] = 2, + ACTIONS(774), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1148), 8, + ACTIONS(776), 8, sym_if, sym_foreach, sym_while, + sym_endwhile, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [22028] = 2, - ACTIONS(1190), 3, + [14717] = 2, + ACTIONS(670), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1192), 8, + ACTIONS(672), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [22044] = 2, - ACTIONS(1186), 3, + [14733] = 2, + ACTIONS(674), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1188), 8, + ACTIONS(676), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [22060] = 2, - ACTIONS(1182), 3, + [14749] = 2, + ACTIONS(678), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1184), 8, + ACTIONS(680), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [22076] = 2, - ACTIONS(1170), 3, + [14765] = 2, + ACTIONS(682), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1172), 8, + ACTIONS(684), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, + sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [22092] = 2, - ACTIONS(1166), 3, + [14781] = 2, + ACTIONS(750), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1168), 8, + ACTIONS(752), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, sym_function, + sym_endfunction, sym_macro, sym_block, sym_identifier, - [22108] = 2, - ACTIONS(1142), 3, + [14797] = 2, + ACTIONS(714), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1144), 8, + ACTIONS(716), 7, sym_if, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [22124] = 2, - ACTIONS(1150), 3, + [14813] = 2, + ACTIONS(718), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1152), 8, + ACTIONS(720), 7, sym_if, sym_foreach, - sym_endforeach, sym_while, sym_function, sym_macro, sym_block, sym_identifier, - [22140] = 2, - ACTIONS(1146), 3, + [14829] = 2, + ACTIONS(698), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1148), 8, + ACTIONS(700), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, sym_function, + sym_endfunction, sym_macro, sym_block, sym_identifier, - [22156] = 2, - ACTIONS(1142), 3, + [14845] = 2, + ACTIONS(786), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1144), 8, + ACTIONS(788), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, sym_function, + sym_endfunction, sym_macro, sym_block, sym_identifier, - [22172] = 2, - ACTIONS(1138), 3, + [14861] = 2, + ACTIONS(798), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1140), 8, + ACTIONS(800), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, sym_function, + sym_endfunction, sym_macro, sym_block, sym_identifier, - [22188] = 2, - ACTIONS(1126), 3, + [14877] = 2, + ACTIONS(802), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1128), 8, + ACTIONS(804), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, sym_function, + sym_endfunction, sym_macro, sym_block, sym_identifier, - [22204] = 2, - ACTIONS(1122), 3, + [14893] = 2, + ACTIONS(810), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1124), 8, + ACTIONS(812), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, sym_function, + sym_endfunction, sym_macro, sym_block, sym_identifier, - [22220] = 2, - ACTIONS(1138), 3, + [14909] = 2, + ACTIONS(838), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1140), 8, + ACTIONS(840), 8, sym_if, sym_foreach, sym_while, sym_function, + sym_endfunction, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [22236] = 2, - ACTIONS(1126), 3, + [14925] = 2, + ACTIONS(834), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1128), 8, + ACTIONS(836), 8, sym_if, sym_foreach, sym_while, sym_function, + sym_endfunction, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [22252] = 2, - ACTIONS(1122), 3, + [14941] = 2, + ACTIONS(794), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1124), 8, + ACTIONS(796), 8, sym_if, sym_foreach, sym_while, sym_function, + sym_endfunction, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [22268] = 2, - ACTIONS(1162), 3, + [14957] = 2, + ACTIONS(778), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1164), 8, + ACTIONS(780), 8, sym_if, sym_foreach, sym_while, @@ -21228,54 +15428,54 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [22284] = 2, - ACTIONS(1202), 3, + [14973] = 2, + ACTIONS(750), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1204), 8, + ACTIONS(752), 7, sym_if, sym_foreach, sym_while, sym_function, - sym_endfunction, sym_macro, sym_block, sym_identifier, - [22300] = 2, - ACTIONS(1274), 3, + [14989] = 2, + ACTIONS(770), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1276), 8, + ACTIONS(772), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, sym_function, + sym_endfunction, sym_macro, sym_block, sym_identifier, - [22316] = 2, - ACTIONS(1278), 3, + [15005] = 2, + ACTIONS(766), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1280), 8, + ACTIONS(768), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, sym_function, + sym_endfunction, sym_macro, sym_block, sym_identifier, - [22332] = 2, - ACTIONS(1254), 3, + [15021] = 2, + ACTIONS(762), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1256), 8, + ACTIONS(764), 8, sym_if, sym_foreach, sym_while, @@ -21284,12 +15484,12 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [22348] = 2, - ACTIONS(1282), 3, + [15037] = 2, + ACTIONS(758), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1284), 8, + ACTIONS(760), 8, sym_if, sym_foreach, sym_while, @@ -21298,12 +15498,12 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [22364] = 2, - ACTIONS(1278), 3, + [15053] = 2, + ACTIONS(754), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1280), 8, + ACTIONS(756), 8, sym_if, sym_foreach, sym_while, @@ -21312,26 +15512,26 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [22380] = 2, - ACTIONS(1270), 3, + [15069] = 2, + ACTIONS(662), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1272), 8, + ACTIONS(664), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, sym_function, + sym_endfunction, sym_macro, sym_block, sym_identifier, - [22396] = 2, - ACTIONS(1270), 3, + [15085] = 2, + ACTIONS(746), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1272), 8, + ACTIONS(748), 8, sym_if, sym_foreach, sym_while, @@ -21340,40 +15540,40 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [22412] = 2, - ACTIONS(1194), 3, + [15101] = 2, + ACTIONS(722), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1196), 8, + ACTIONS(724), 7, sym_if, sym_foreach, - sym_endforeach, sym_while, sym_function, sym_macro, sym_block, sym_identifier, - [22428] = 2, - ACTIONS(1282), 3, + [15117] = 2, + ACTIONS(726), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1284), 8, + ACTIONS(728), 7, sym_if, sym_foreach, - sym_endforeach, sym_while, sym_function, sym_macro, sym_block, sym_identifier, - [22444] = 2, - ACTIONS(1266), 3, + [15133] = 2, + ACTIONS(738), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1268), 8, + ACTIONS(740), 8, sym_if, sym_foreach, sym_while, @@ -21382,12 +15582,12 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [22460] = 2, - ACTIONS(1262), 3, + [15149] = 2, + ACTIONS(734), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1264), 8, + ACTIONS(736), 8, sym_if, sym_foreach, sym_while, @@ -21396,12 +15596,12 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [22476] = 2, - ACTIONS(1258), 3, + [15165] = 2, + ACTIONS(730), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1260), 8, + ACTIONS(732), 8, sym_if, sym_foreach, sym_while, @@ -21410,12 +15610,12 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [22492] = 2, - ACTIONS(1090), 3, + [15181] = 2, + ACTIONS(726), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1092), 8, + ACTIONS(728), 8, sym_if, sym_foreach, sym_while, @@ -21424,12 +15624,12 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [22508] = 2, - ACTIONS(1250), 3, + [15197] = 2, + ACTIONS(722), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1252), 8, + ACTIONS(724), 8, sym_if, sym_foreach, sym_while, @@ -21438,12 +15638,12 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [22524] = 2, - ACTIONS(1246), 3, + [15213] = 2, + ACTIONS(718), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1248), 8, + ACTIONS(720), 8, sym_if, sym_foreach, sym_while, @@ -21452,40 +15652,40 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [22540] = 2, - ACTIONS(1242), 3, + [15229] = 2, + ACTIONS(730), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1244), 8, + ACTIONS(732), 7, sym_if, sym_foreach, sym_while, sym_function, - sym_endfunction, sym_macro, sym_block, sym_identifier, - [22556] = 2, - ACTIONS(1254), 3, + [15245] = 2, + ACTIONS(802), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1256), 8, + ACTIONS(804), 7, sym_if, sym_foreach, - sym_endforeach, sym_while, sym_function, sym_macro, sym_block, sym_identifier, - [22572] = 2, - ACTIONS(1238), 3, + [15261] = 2, + ACTIONS(714), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1240), 8, + ACTIONS(716), 8, sym_if, sym_foreach, sym_while, @@ -21494,26 +15694,26 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [22588] = 2, - ACTIONS(1166), 3, + [15277] = 2, + ACTIONS(774), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1168), 8, + ACTIONS(776), 8, sym_if, sym_foreach, sym_while, sym_function, + sym_endfunction, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [22604] = 2, - ACTIONS(1230), 3, + [15293] = 2, + ACTIONS(670), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1232), 8, + ACTIONS(672), 8, sym_if, sym_foreach, sym_while, @@ -21522,12 +15722,12 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [22620] = 2, - ACTIONS(1226), 3, + [15309] = 2, + ACTIONS(674), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1228), 8, + ACTIONS(676), 8, sym_if, sym_foreach, sym_while, @@ -21536,12 +15736,12 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [22636] = 2, - ACTIONS(1222), 3, + [15325] = 2, + ACTIONS(678), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1224), 8, + ACTIONS(680), 8, sym_if, sym_foreach, sym_while, @@ -21550,12 +15750,12 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [22652] = 2, - ACTIONS(1082), 3, + [15341] = 2, + ACTIONS(682), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1084), 8, + ACTIONS(684), 8, sym_if, sym_foreach, sym_while, @@ -21564,377 +15764,363 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [22668] = 2, - ACTIONS(1206), 3, + [15357] = 2, + ACTIONS(750), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1208), 8, + ACTIONS(752), 8, sym_if, sym_foreach, sym_while, sym_function, - sym_endfunction, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [22684] = 2, - ACTIONS(1198), 3, + [15373] = 2, + ACTIONS(810), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1200), 8, + ACTIONS(812), 7, sym_if, sym_foreach, sym_while, sym_function, - sym_endfunction, sym_macro, sym_block, sym_identifier, - [22700] = 2, - ACTIONS(1194), 3, + [15389] = 2, + ACTIONS(838), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1196), 8, + ACTIONS(840), 7, sym_if, sym_foreach, sym_while, sym_function, - sym_endfunction, sym_macro, sym_block, sym_identifier, - [22716] = 2, - ACTIONS(1190), 3, + [15405] = 2, + ACTIONS(698), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1192), 8, + ACTIONS(700), 8, sym_if, sym_foreach, sym_while, sym_function, - sym_endfunction, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [22732] = 2, - ACTIONS(1186), 3, + [15421] = 2, + ACTIONS(786), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1188), 8, + ACTIONS(788), 8, sym_if, sym_foreach, sym_while, sym_function, - sym_endfunction, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [22748] = 2, - ACTIONS(1182), 3, + [15437] = 2, + ACTIONS(798), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1184), 8, + ACTIONS(800), 8, sym_if, sym_foreach, sym_while, sym_function, - sym_endfunction, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [22764] = 2, - ACTIONS(1170), 3, + [15453] = 2, + ACTIONS(802), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1172), 8, + ACTIONS(804), 8, sym_if, sym_foreach, sym_while, sym_function, - sym_endfunction, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [22780] = 2, - ACTIONS(1166), 3, + [15469] = 2, + ACTIONS(810), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1168), 8, + ACTIONS(812), 8, sym_if, sym_foreach, sym_while, sym_function, - sym_endfunction, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [22796] = 2, - ACTIONS(1202), 3, + [15485] = 2, + ACTIONS(838), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1204), 8, + ACTIONS(840), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, sym_function, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [22812] = 2, - ACTIONS(1122), 4, + [15501] = 2, + ACTIONS(834), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1124), 7, + ACTIONS(836), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [22828] = 2, - ACTIONS(1162), 4, + [15517] = 2, + ACTIONS(794), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1164), 7, + ACTIONS(796), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [22844] = 2, - ACTIONS(1298), 1, - aux_sym__unquoted_text_token1, - ACTIONS(790), 10, - sym_bracket_argument, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DQUOTE, - [22860] = 2, - ACTIONS(1202), 4, + [15533] = 2, + ACTIONS(778), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1204), 7, + ACTIONS(780), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [22876] = 2, - ACTIONS(1150), 3, + [15549] = 2, + ACTIONS(798), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1152), 8, + ACTIONS(800), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, sym_function, - sym_endfunction, sym_macro, sym_block, sym_identifier, - [22892] = 2, - ACTIONS(1146), 3, + [15565] = 2, + ACTIONS(770), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1148), 8, + ACTIONS(772), 8, sym_if, sym_foreach, sym_while, sym_function, - sym_endfunction, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [22908] = 2, - ACTIONS(1142), 3, + [15581] = 2, + ACTIONS(766), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1144), 8, + ACTIONS(768), 8, sym_if, sym_foreach, sym_while, sym_function, - sym_endfunction, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [22924] = 2, - ACTIONS(1254), 4, + [15597] = 2, + ACTIONS(762), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1256), 7, + ACTIONS(764), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [22940] = 2, - ACTIONS(1282), 4, + [15613] = 2, + ACTIONS(758), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1284), 7, + ACTIONS(760), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [22956] = 2, - ACTIONS(1278), 4, + [15629] = 2, + ACTIONS(754), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1280), 7, + ACTIONS(756), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [22972] = 2, - ACTIONS(1274), 4, + [15645] = 2, + ACTIONS(662), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1276), 7, + ACTIONS(664), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [22988] = 2, - ACTIONS(1270), 4, + [15661] = 2, + ACTIONS(746), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1272), 7, + ACTIONS(748), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [23004] = 2, - ACTIONS(1138), 3, + [15677] = 2, + ACTIONS(734), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1140), 8, + ACTIONS(736), 7, sym_if, sym_foreach, sym_while, sym_function, - sym_endfunction, sym_macro, sym_block, sym_identifier, - [23020] = 2, - ACTIONS(1126), 3, + [15693] = 2, + ACTIONS(734), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1128), 8, + ACTIONS(736), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, sym_function, - sym_endfunction, sym_macro, sym_block, sym_identifier, - [23036] = 2, - ACTIONS(1122), 3, + [15709] = 2, + ACTIONS(738), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1124), 8, + ACTIONS(740), 8, sym_if, sym_foreach, sym_while, sym_function, - sym_endfunction, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [23052] = 2, - ACTIONS(1162), 3, + [15725] = 2, + ACTIONS(734), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1164), 8, + ACTIONS(736), 8, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [23068] = 2, - ACTIONS(1202), 3, + [15741] = 2, + ACTIONS(730), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1204), 8, + ACTIONS(732), 8, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [23084] = 2, - ACTIONS(1266), 4, + [15757] = 2, + ACTIONS(674), 4, sym_bracket_comment, sym_line_comment, ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1268), 7, + ACTIONS(676), 7, sym_if, sym_foreach, sym_while, @@ -21942,55 +16128,55 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [23100] = 2, - ACTIONS(1262), 4, + [15773] = 2, + ACTIONS(722), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1264), 7, + ACTIONS(724), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [23116] = 2, - ACTIONS(1258), 4, + [15789] = 2, + ACTIONS(718), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1260), 7, + ACTIONS(720), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [23132] = 2, - ACTIONS(1090), 4, + [15805] = 2, + ACTIONS(730), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1092), 7, + ACTIONS(732), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, sym_function, sym_macro, sym_block, sym_identifier, - [23148] = 2, - ACTIONS(1250), 4, + [15821] = 2, + ACTIONS(738), 4, sym_bracket_comment, sym_line_comment, ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1252), 7, + ACTIONS(740), 7, sym_if, sym_foreach, sym_while, @@ -21998,82 +16184,82 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [23164] = 2, - ACTIONS(1246), 4, + [15837] = 2, + ACTIONS(714), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1248), 7, + ACTIONS(716), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [23180] = 2, - ACTIONS(1254), 3, + [15853] = 2, + ACTIONS(774), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1256), 8, + ACTIONS(776), 8, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [23196] = 2, - ACTIONS(1282), 3, + [15869] = 2, + ACTIONS(670), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1284), 8, + ACTIONS(672), 8, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [23212] = 2, - ACTIONS(1242), 4, + [15885] = 2, + ACTIONS(674), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1244), 7, + ACTIONS(676), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, + sym_endmacro, sym_block, sym_identifier, - [23228] = 2, - ACTIONS(1300), 3, + [15901] = 2, + ACTIONS(678), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1302), 8, + ACTIONS(680), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, + sym_endmacro, sym_block, - sym_endblock, sym_identifier, - [23244] = 2, - ACTIONS(1304), 3, + [15917] = 2, + ACTIONS(682), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1306), 8, + ACTIONS(684), 8, sym_if, sym_foreach, sym_while, @@ -22082,306 +16268,306 @@ static const uint16_t ts_small_parse_table[] = { sym_endmacro, sym_block, sym_identifier, - [23260] = 2, - ACTIONS(1308), 3, + [15933] = 2, + ACTIONS(750), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1310), 8, + ACTIONS(752), 8, sym_if, sym_foreach, sym_while, sym_function, - sym_endfunction, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23276] = 2, - ACTIONS(1312), 3, + [15949] = 2, + ACTIONS(738), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1314), 8, + ACTIONS(740), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [23292] = 2, - ACTIONS(1316), 3, + [15965] = 2, + ACTIONS(758), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1318), 8, + ACTIONS(760), 7, sym_if, sym_foreach, - sym_endforeach, sym_while, sym_function, sym_macro, sym_block, sym_identifier, - [23308] = 2, - ACTIONS(1278), 3, + [15981] = 2, + ACTIONS(746), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1280), 8, + ACTIONS(748), 7, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [23324] = 2, - ACTIONS(1162), 3, + [15997] = 2, + ACTIONS(698), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1164), 8, + ACTIONS(700), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23340] = 2, - ACTIONS(1274), 3, + [16013] = 2, + ACTIONS(786), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1276), 8, + ACTIONS(788), 8, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23356] = 2, - ACTIONS(1270), 3, + [16029] = 2, + ACTIONS(798), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1272), 8, + ACTIONS(800), 8, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23372] = 2, - ACTIONS(1126), 4, + [16045] = 2, + ACTIONS(802), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1128), 7, + ACTIONS(804), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23388] = 2, - ACTIONS(1266), 3, + [16061] = 2, + ACTIONS(810), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1268), 8, + ACTIONS(812), 8, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23404] = 2, - ACTIONS(1262), 3, + [16077] = 2, + ACTIONS(838), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1264), 8, + ACTIONS(840), 8, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23420] = 2, - ACTIONS(1258), 3, + [16093] = 2, + ACTIONS(834), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1260), 8, + ACTIONS(836), 8, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23436] = 2, - ACTIONS(1090), 3, + [16109] = 2, + ACTIONS(794), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1092), 8, + ACTIONS(796), 8, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23452] = 2, - ACTIONS(1238), 4, + [16125] = 2, + ACTIONS(778), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1240), 7, + ACTIONS(780), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23468] = 2, - ACTIONS(1234), 4, + [16141] = 2, + ACTIONS(746), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1236), 7, + ACTIONS(748), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, sym_function, sym_macro, sym_block, sym_identifier, - [23484] = 2, - ACTIONS(1230), 4, + [16157] = 2, + ACTIONS(766), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1232), 7, + ACTIONS(768), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23500] = 2, - ACTIONS(1226), 4, + [16173] = 2, + ACTIONS(762), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1228), 7, + ACTIONS(764), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23516] = 2, - ACTIONS(1222), 4, + [16189] = 2, + ACTIONS(758), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1224), 7, + ACTIONS(760), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23532] = 2, - ACTIONS(1082), 4, + [16205] = 2, + ACTIONS(754), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1084), 7, + ACTIONS(756), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23548] = 2, - ACTIONS(1250), 3, + [16221] = 2, + ACTIONS(662), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1252), 8, + ACTIONS(664), 8, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23564] = 2, - ACTIONS(1246), 3, + [16237] = 2, + ACTIONS(746), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1248), 8, + ACTIONS(748), 8, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23580] = 2, - ACTIONS(1206), 4, + [16253] = 2, + ACTIONS(662), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1208), 7, + ACTIONS(664), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, sym_function, sym_macro, sym_block, sym_identifier, - [23596] = 2, - ACTIONS(1320), 3, + [16269] = 2, + ACTIONS(738), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1322), 8, + ACTIONS(740), 8, sym_if, sym_foreach, sym_while, @@ -22390,265 +16576,279 @@ static const uint16_t ts_small_parse_table[] = { sym_block, sym_endblock, sym_identifier, - [23612] = 2, - ACTIONS(1324), 3, + [16285] = 2, + ACTIONS(734), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1326), 8, + ACTIONS(736), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, + sym_endblock, sym_identifier, - [23628] = 2, - ACTIONS(1328), 3, + [16301] = 2, + ACTIONS(730), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1330), 8, + ACTIONS(732), 8, sym_if, sym_foreach, sym_while, sym_function, - sym_endfunction, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23644] = 2, - ACTIONS(1332), 3, + [16317] = 2, + ACTIONS(726), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1334), 8, + ACTIONS(728), 8, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23660] = 2, - ACTIONS(1336), 3, + [16333] = 2, + ACTIONS(722), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1338), 8, + ACTIONS(724), 8, sym_if, sym_foreach, - sym_endforeach, sym_while, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23676] = 2, - ACTIONS(1242), 3, + [16349] = 2, + ACTIONS(718), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1244), 8, + ACTIONS(720), 8, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23692] = 2, - ACTIONS(1122), 3, + [16365] = 2, + ACTIONS(754), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1124), 8, + ACTIONS(756), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [23708] = 2, - ACTIONS(1238), 3, + [16381] = 2, + ACTIONS(758), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1240), 8, + ACTIONS(760), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [23724] = 2, - ACTIONS(1234), 3, + [16397] = 2, + ACTIONS(714), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1236), 8, + ACTIONS(716), 8, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23740] = 2, - ACTIONS(1230), 3, + [16413] = 2, + ACTIONS(774), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1232), 8, + ACTIONS(776), 8, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23756] = 2, - ACTIONS(1226), 3, + [16429] = 2, + ACTIONS(670), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1228), 8, + ACTIONS(672), 8, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23772] = 2, - ACTIONS(1222), 3, + [16445] = 2, + ACTIONS(674), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1224), 8, + ACTIONS(676), 8, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23788] = 2, - ACTIONS(1198), 4, + [16461] = 2, + ACTIONS(678), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1200), 7, + ACTIONS(680), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23804] = 2, - ACTIONS(1194), 4, + [16477] = 2, + ACTIONS(682), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1196), 7, + ACTIONS(684), 8, sym_if, sym_foreach, sym_while, sym_function, sym_macro, sym_block, + sym_endblock, sym_identifier, - [23820] = 2, - ACTIONS(1190), 4, + [16493] = 2, + ACTIONS(762), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1192), 7, + ACTIONS(764), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, sym_function, sym_macro, sym_block, sym_identifier, - [23836] = 2, - ACTIONS(1186), 4, + [16509] = 2, + ACTIONS(766), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1188), 7, + ACTIONS(768), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, sym_function, sym_macro, sym_block, sym_identifier, - [23852] = 2, - ACTIONS(1082), 3, + [16525] = 2, + ACTIONS(770), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1084), 8, + ACTIONS(772), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [23868] = 2, - ACTIONS(1206), 3, + [16541] = 2, + ACTIONS(786), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1208), 8, + ACTIONS(788), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [23884] = 2, - ACTIONS(1182), 4, + [16557] = 2, + ACTIONS(662), 4, sym_bracket_comment, sym_line_comment, ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1184), 7, + ACTIONS(664), 7, + sym_if, + sym_foreach, + sym_while, + sym_function, + sym_macro, + sym_block, + sym_identifier, + [16573] = 2, + ACTIONS(698), 3, + sym_bracket_comment, + sym_line_comment, + aux_sym__untrimmed_argument_token1, + ACTIONS(700), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, sym_function, sym_macro, sym_block, sym_identifier, - [23900] = 2, - ACTIONS(1138), 4, + [16589] = 2, + ACTIONS(770), 4, sym_bracket_comment, sym_line_comment, ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1140), 7, + ACTIONS(772), 7, sym_if, sym_foreach, sym_while, @@ -22656,13 +16856,13 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [23916] = 2, - ACTIONS(1170), 4, + [16605] = 2, + ACTIONS(834), 4, sym_bracket_comment, sym_line_comment, ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1172), 7, + ACTIONS(836), 7, sym_if, sym_foreach, sym_while, @@ -22670,124 +16870,124 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [23932] = 2, - ACTIONS(1198), 3, + [16621] = 2, + ACTIONS(778), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1200), 8, + ACTIONS(780), 7, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [23948] = 2, - ACTIONS(1194), 3, + [16637] = 2, + ACTIONS(766), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1196), 8, + ACTIONS(768), 7, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [23964] = 2, - ACTIONS(1190), 3, + [16653] = 2, + ACTIONS(802), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1192), 8, + ACTIONS(804), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [23980] = 2, - ACTIONS(1166), 4, + [16669] = 2, + ACTIONS(778), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1168), 7, + ACTIONS(780), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, sym_function, sym_macro, sym_block, sym_identifier, - [23996] = 2, - ACTIONS(1340), 3, + [16685] = 2, + ACTIONS(794), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1342), 8, + ACTIONS(796), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, sym_function, sym_macro, sym_block, - sym_endblock, sym_identifier, - [24012] = 2, - ACTIONS(1344), 3, + [16701] = 2, + ACTIONS(754), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1346), 8, + ACTIONS(756), 7, sym_if, sym_foreach, sym_while, sym_function, sym_macro, - sym_endmacro, sym_block, sym_identifier, - [24028] = 2, - ACTIONS(1348), 3, + [16717] = 2, + ACTIONS(762), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1350), 8, + ACTIONS(764), 7, sym_if, sym_foreach, sym_while, sym_function, - sym_endfunction, sym_macro, sym_block, sym_identifier, - [24044] = 2, - ACTIONS(1352), 3, + [16733] = 2, + ACTIONS(810), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1354), 8, + ACTIONS(812), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [24060] = 2, - ACTIONS(1356), 3, + [16749] = 2, + ACTIONS(838), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1358), 8, + ACTIONS(840), 8, sym_if, sym_foreach, sym_endforeach, @@ -22796,97 +16996,122 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [24076] = 2, - ACTIONS(1186), 3, + [16765] = 2, + ACTIONS(794), 4, sym_bracket_comment, sym_line_comment, + ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1188), 8, + ACTIONS(796), 7, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [24092] = 2, - ACTIONS(1182), 3, + [16781] = 2, + ACTIONS(834), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1184), 8, + ACTIONS(836), 8, sym_if, sym_foreach, + sym_endforeach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [24108] = 2, - ACTIONS(1170), 3, + [16797] = 2, + ACTIONS(856), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1172), 8, + ACTIONS(858), 7, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [24124] = 2, - ACTIONS(1166), 3, + [16812] = 4, + ACTIONS(860), 1, + anon_sym_DOLLAR, + ACTIONS(863), 1, + aux_sym__unquoted_text_token1, + STATE(476), 1, + aux_sym__unquoted_text_repeat1, + ACTIONS(590), 7, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_RPAREN, + [16831] = 2, + ACTIONS(866), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1168), 8, + ACTIONS(868), 7, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [24140] = 2, - ACTIONS(1150), 3, + [16846] = 2, + ACTIONS(870), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1152), 8, + ACTIONS(872), 7, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [24156] = 2, - ACTIONS(1146), 3, + [16861] = 4, + ACTIONS(876), 1, + anon_sym_DOLLAR, + ACTIONS(879), 1, + aux_sym__quoted_text_token1, + STATE(479), 1, + aux_sym__quoted_text_repeat1, + ACTIONS(874), 7, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DQUOTE, + [16880] = 2, + ACTIONS(882), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1148), 8, + ACTIONS(884), 7, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [24172] = 2, - ACTIONS(1150), 4, + [16895] = 2, + ACTIONS(886), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1152), 7, + ACTIONS(888), 7, sym_if, sym_foreach, sym_while, @@ -22894,27 +17119,38 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [24188] = 2, - ACTIONS(1142), 3, + [16910] = 2, + ACTIONS(636), 1, + aux_sym__unquoted_text_token1, + ACTIONS(634), 9, + sym__escape_identity, + anon_sym_BSLASHt, + anon_sym_BSLASHr, + anon_sym_BSLASHn, + anon_sym_SEMI, + anon_sym_BSLASH_SEMI, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_COLON, + [16925] = 2, + ACTIONS(890), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1144), 8, + ACTIONS(892), 7, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [24204] = 2, - ACTIONS(1146), 4, + [16940] = 2, + ACTIONS(894), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1148), 7, + ACTIONS(896), 7, sym_if, sym_foreach, sym_while, @@ -22922,27 +17158,25 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [24220] = 2, - ACTIONS(1138), 3, + [16955] = 2, + ACTIONS(898), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1140), 8, + ACTIONS(900), 7, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [24236] = 2, - ACTIONS(1142), 4, + [16970] = 2, + ACTIONS(902), 3, sym_bracket_comment, sym_line_comment, - ts_builtin_sym_end, aux_sym__untrimmed_argument_token1, - ACTIONS(1144), 7, + ACTIONS(904), 7, sym_if, sym_foreach, sym_while, @@ -22950,53 +17184,23 @@ static const uint16_t ts_small_parse_table[] = { sym_macro, sym_block, sym_identifier, - [24252] = 2, - ACTIONS(1126), 3, + [16985] = 2, + ACTIONS(906), 3, sym_bracket_comment, sym_line_comment, aux_sym__untrimmed_argument_token1, - ACTIONS(1128), 8, + ACTIONS(908), 7, sym_if, sym_foreach, sym_while, - sym_endwhile, sym_function, sym_macro, sym_block, sym_identifier, - [24268] = 5, - ACTIONS(1177), 1, - aux_sym_endwhile_command_token1, - ACTIONS(1360), 1, - anon_sym_DOLLAR, - ACTIONS(1363), 1, - aux_sym__unquoted_text_token1, - STATE(640), 1, - aux_sym__unquoted_text_repeat1, - ACTIONS(1006), 6, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - [24289] = 2, - ACTIONS(1056), 1, - aux_sym__unquoted_text_token1, - ACTIONS(1054), 9, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_COLON, - [24304] = 2, - ACTIONS(1048), 1, + [17000] = 2, + ACTIONS(632), 1, aux_sym__unquoted_text_token1, - ACTIONS(1046), 9, + ACTIONS(630), 9, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23006,25 +17210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_GT, anon_sym_COLON, - [24319] = 4, - ACTIONS(1368), 1, - anon_sym_DOLLAR, - ACTIONS(1371), 1, - aux_sym__quoted_text_token1, - STATE(643), 1, - aux_sym__quoted_text_repeat1, - ACTIONS(1366), 7, - sym__escape_identity, - anon_sym_BSLASHt, - anon_sym_BSLASHr, - anon_sym_BSLASHn, - anon_sym_SEMI, - anon_sym_BSLASH_SEMI, - anon_sym_DQUOTE, - [24338] = 2, - ACTIONS(1068), 1, + [17015] = 2, + ACTIONS(608), 1, aux_sym__unquoted_text_token1, - ACTIONS(1066), 9, + ACTIONS(606), 9, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23034,10 +17223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_GT, anon_sym_COLON, - [24353] = 2, - ACTIONS(1052), 1, + [17030] = 2, + ACTIONS(652), 1, aux_sym__unquoted_text_token1, - ACTIONS(1050), 9, + ACTIONS(650), 9, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23047,25 +17236,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_GT, anon_sym_COLON, - [24368] = 4, - ACTIONS(1374), 1, + [17045] = 5, + ACTIONS(817), 1, + aux_sym_endwhile_command_token1, + ACTIONS(910), 1, anon_sym_DOLLAR, - ACTIONS(1377), 1, + ACTIONS(913), 1, aux_sym__unquoted_text_token1, - STATE(646), 1, + STATE(491), 1, aux_sym__unquoted_text_repeat1, - ACTIONS(1006), 7, + ACTIONS(590), 6, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - anon_sym_RPAREN, - [24387] = 2, - ACTIONS(1040), 1, + [17066] = 2, + ACTIONS(648), 1, aux_sym__unquoted_text_token1, - ACTIONS(1038), 9, + ACTIONS(646), 9, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23075,10 +17265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_GT, anon_sym_COLON, - [24402] = 2, - ACTIONS(1032), 1, + [17081] = 2, + ACTIONS(612), 1, aux_sym__unquoted_text_token1, - ACTIONS(1030), 9, + ACTIONS(610), 9, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23088,10 +17278,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_GT, anon_sym_COLON, - [24417] = 2, - ACTIONS(1036), 1, + [17096] = 2, + ACTIONS(616), 1, aux_sym__unquoted_text_token1, - ACTIONS(1034), 9, + ACTIONS(614), 9, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23101,10 +17291,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_GT, anon_sym_COLON, - [24432] = 2, - ACTIONS(1068), 1, - aux_sym__quoted_text_token1, - ACTIONS(1066), 8, + [17111] = 2, + ACTIONS(608), 2, + aux_sym__unquoted_text_token1, + aux_sym_endwhile_command_token1, + ACTIONS(606), 7, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23112,12 +17303,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_BSLASH_SEMI, anon_sym_DOLLAR, - anon_sym_DQUOTE, - [24446] = 2, - ACTIONS(1056), 2, - aux_sym__unquoted_text_token1, - aux_sym_endwhile_command_token1, - ACTIONS(1054), 7, + [17125] = 2, + ACTIONS(616), 1, + aux_sym__quoted_text_token1, + ACTIONS(614), 8, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23125,10 +17314,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_BSLASH_SEMI, anon_sym_DOLLAR, - [24460] = 2, - ACTIONS(1052), 1, - aux_sym__quoted_text_token1, - ACTIONS(1050), 8, + anon_sym_DQUOTE, + [17139] = 2, + ACTIONS(612), 1, + aux_sym__unquoted_text_token1, + ACTIONS(610), 8, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23136,35 +17326,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_BSLASH_SEMI, anon_sym_DOLLAR, - anon_sym_DQUOTE, - [24474] = 2, - ACTIONS(1056), 1, - aux_sym__quoted_text_token1, - ACTIONS(1054), 8, + anon_sym_RPAREN, + [17153] = 1, + ACTIONS(650), 9, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, + aux_sym_variable_token1, anon_sym_DOLLAR, - anon_sym_DQUOTE, - [24488] = 2, - ACTIONS(1040), 1, - aux_sym__quoted_text_token1, - ACTIONS(1038), 8, + anon_sym_RBRACE, + [17165] = 1, + ACTIONS(630), 9, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, + aux_sym_variable_token1, anon_sym_DOLLAR, - anon_sym_DQUOTE, - [24502] = 2, - ACTIONS(1048), 1, - aux_sym__quoted_text_token1, - ACTIONS(1046), 8, + anon_sym_RBRACE, + [17177] = 2, + ACTIONS(648), 1, + aux_sym__unquoted_text_token1, + ACTIONS(646), 8, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23172,11 +17360,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_BSLASH_SEMI, anon_sym_DOLLAR, - anon_sym_DQUOTE, - [24516] = 2, - ACTIONS(1036), 1, - aux_sym__quoted_text_token1, - ACTIONS(1034), 8, + anon_sym_RPAREN, + [17191] = 2, + ACTIONS(636), 2, + aux_sym__unquoted_text_token1, + aux_sym_endwhile_command_token1, + ACTIONS(634), 7, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23184,11 +17373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_BSLASH_SEMI, anon_sym_DOLLAR, - anon_sym_DQUOTE, - [24530] = 2, - ACTIONS(1068), 1, + [17205] = 2, + ACTIONS(652), 1, aux_sym__unquoted_text_token1, - ACTIONS(1066), 8, + ACTIONS(650), 8, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23197,10 +17385,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_SEMI, anon_sym_DOLLAR, anon_sym_RPAREN, - [24544] = 2, - ACTIONS(1052), 1, + [17219] = 2, + ACTIONS(632), 1, aux_sym__unquoted_text_token1, - ACTIONS(1050), 8, + ACTIONS(630), 8, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23209,22 +17397,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_SEMI, anon_sym_DOLLAR, anon_sym_RPAREN, - [24558] = 2, - ACTIONS(1056), 1, - aux_sym__unquoted_text_token1, - ACTIONS(1054), 8, + [17233] = 1, + ACTIONS(646), 9, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, + aux_sym_variable_token1, anon_sym_DOLLAR, - anon_sym_RPAREN, - [24572] = 2, - ACTIONS(1040), 1, + anon_sym_RBRACE, + [17245] = 2, + ACTIONS(632), 2, aux_sym__unquoted_text_token1, - ACTIONS(1038), 8, + aux_sym_endwhile_command_token1, + ACTIONS(630), 7, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23232,11 +17420,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_BSLASH_SEMI, anon_sym_DOLLAR, - anon_sym_RPAREN, - [24586] = 2, - ACTIONS(1048), 1, + [17259] = 2, + ACTIONS(608), 1, aux_sym__unquoted_text_token1, - ACTIONS(1046), 8, + ACTIONS(606), 8, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23245,10 +17432,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_SEMI, anon_sym_DOLLAR, anon_sym_RPAREN, - [24600] = 2, - ACTIONS(1032), 1, + [17273] = 2, + ACTIONS(652), 2, aux_sym__unquoted_text_token1, - ACTIONS(1030), 8, + aux_sym_endwhile_command_token1, + ACTIONS(650), 7, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23256,11 +17444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_BSLASH_SEMI, anon_sym_DOLLAR, - anon_sym_RPAREN, - [24614] = 2, - ACTIONS(1036), 1, + [17287] = 2, + ACTIONS(616), 1, aux_sym__unquoted_text_token1, - ACTIONS(1034), 8, + ACTIONS(614), 8, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23269,65 +17456,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_SEMI, anon_sym_DOLLAR, anon_sym_RPAREN, - [24628] = 1, - ACTIONS(1066), 9, + [17301] = 2, + ACTIONS(612), 1, + aux_sym__quoted_text_token1, + ACTIONS(610), 8, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - aux_sym_variable_token1, anon_sym_DOLLAR, - anon_sym_RBRACE, - [24640] = 1, - ACTIONS(1050), 9, + anon_sym_DQUOTE, + [17315] = 2, + ACTIONS(608), 1, + aux_sym__quoted_text_token1, + ACTIONS(606), 8, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - aux_sym_variable_token1, anon_sym_DOLLAR, - anon_sym_RBRACE, - [24652] = 1, - ACTIONS(1038), 9, + anon_sym_DQUOTE, + [17329] = 2, + ACTIONS(636), 1, + aux_sym__unquoted_text_token1, + ACTIONS(634), 8, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - aux_sym_variable_token1, anon_sym_DOLLAR, - anon_sym_RBRACE, - [24664] = 1, - ACTIONS(1030), 9, + anon_sym_RPAREN, + [17343] = 2, + ACTIONS(648), 2, + aux_sym__unquoted_text_token1, + aux_sym_endwhile_command_token1, + ACTIONS(646), 7, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - aux_sym_variable_token1, anon_sym_DOLLAR, - anon_sym_RBRACE, - [24676] = 1, - ACTIONS(1034), 9, + [17357] = 2, + ACTIONS(612), 2, + aux_sym__unquoted_text_token1, + aux_sym_endwhile_command_token1, + ACTIONS(610), 7, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, - aux_sym_variable_token1, anon_sym_DOLLAR, - anon_sym_RBRACE, - [24688] = 2, - ACTIONS(1032), 1, + [17371] = 2, + ACTIONS(648), 1, aux_sym__quoted_text_token1, - ACTIONS(1030), 8, + ACTIONS(646), 8, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23336,11 +17528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_SEMI, anon_sym_DOLLAR, anon_sym_DQUOTE, - [24702] = 2, - ACTIONS(1048), 2, - aux_sym__unquoted_text_token1, - aux_sym_endwhile_command_token1, - ACTIONS(1046), 7, + [17385] = 2, + ACTIONS(652), 1, + aux_sym__quoted_text_token1, + ACTIONS(650), 8, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23348,11 +17539,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_BSLASH_SEMI, anon_sym_DOLLAR, - [24716] = 2, - ACTIONS(1068), 2, + anon_sym_DQUOTE, + [17399] = 2, + ACTIONS(616), 2, aux_sym__unquoted_text_token1, aux_sym_endwhile_command_token1, - ACTIONS(1066), 7, + ACTIONS(614), 7, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23360,11 +17552,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_BSLASH_SEMI, anon_sym_DOLLAR, - [24730] = 2, - ACTIONS(1052), 2, - aux_sym__unquoted_text_token1, - aux_sym_endwhile_command_token1, - ACTIONS(1050), 7, + [17413] = 2, + ACTIONS(636), 1, + aux_sym__quoted_text_token1, + ACTIONS(634), 8, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23372,35 +17563,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_BSLASH_SEMI, anon_sym_DOLLAR, - [24744] = 2, - ACTIONS(1040), 2, - aux_sym__unquoted_text_token1, - aux_sym_endwhile_command_token1, - ACTIONS(1038), 7, + anon_sym_DQUOTE, + [17427] = 1, + ACTIONS(614), 9, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, + aux_sym_variable_token1, anon_sym_DOLLAR, - [24758] = 2, - ACTIONS(1032), 2, - aux_sym__unquoted_text_token1, - aux_sym_endwhile_command_token1, - ACTIONS(1030), 7, + anon_sym_RBRACE, + [17439] = 1, + ACTIONS(610), 9, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, anon_sym_BSLASHn, anon_sym_SEMI, anon_sym_BSLASH_SEMI, + aux_sym_variable_token1, anon_sym_DOLLAR, - [24772] = 2, - ACTIONS(1036), 2, - aux_sym__unquoted_text_token1, - aux_sym_endwhile_command_token1, - ACTIONS(1034), 7, + anon_sym_RBRACE, + [17451] = 2, + ACTIONS(632), 1, + aux_sym__quoted_text_token1, + ACTIONS(630), 8, sym__escape_identity, anon_sym_BSLASHt, anon_sym_BSLASHr, @@ -23408,3035 +17597,3314 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_BSLASH_SEMI, anon_sym_DOLLAR, - [24786] = 3, - ACTIONS(1380), 1, + anon_sym_DQUOTE, + [17465] = 3, + ACTIONS(916), 1, anon_sym_LPAREN, - ACTIONS(1382), 1, + ACTIONS(918), 1, aux_sym_if_command_token1, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [24796] = 3, - ACTIONS(1384), 1, + [17475] = 3, + ACTIONS(920), 1, anon_sym_LPAREN, - ACTIONS(1386), 1, + ACTIONS(922), 1, aux_sym_if_command_token1, - STATE(795), 1, + STATE(560), 1, aux_sym_if_command_repeat1, - [24806] = 3, - ACTIONS(1388), 1, + [17485] = 3, + ACTIONS(924), 1, anon_sym_LPAREN, - ACTIONS(1390), 1, + ACTIONS(926), 1, aux_sym_if_command_token1, - STATE(685), 1, + STATE(557), 1, aux_sym_if_command_repeat1, - [24816] = 3, - ACTIONS(1392), 1, + [17495] = 1, + ACTIONS(622), 3, + anon_sym_GT, + anon_sym_COLON, + anon_sym_RPAREN, + [17501] = 3, + ACTIONS(928), 1, anon_sym_LPAREN, - ACTIONS(1394), 1, + ACTIONS(930), 1, aux_sym_if_command_token1, - STATE(686), 1, + STATE(556), 1, aux_sym_if_command_repeat1, - [24826] = 3, - ACTIONS(1396), 1, + [17511] = 1, + ACTIONS(642), 3, + anon_sym_GT, + anon_sym_COLON, + anon_sym_RPAREN, + [17517] = 3, + ACTIONS(932), 1, anon_sym_LPAREN, - ACTIONS(1398), 1, + ACTIONS(934), 1, aux_sym_if_command_token1, - STATE(687), 1, + STATE(553), 1, aux_sym_if_command_repeat1, - [24836] = 3, - ACTIONS(1400), 1, + [17527] = 3, + ACTIONS(936), 1, anon_sym_LPAREN, - ACTIONS(1402), 1, + ACTIONS(938), 1, aux_sym_if_command_token1, - STATE(688), 1, + STATE(551), 1, + aux_sym_if_command_repeat1, + [17537] = 3, + ACTIONS(918), 1, + aux_sym_if_command_token1, + ACTIONS(940), 1, + anon_sym_LPAREN, + STATE(532), 1, aux_sym_if_command_repeat1, - [24846] = 3, - ACTIONS(1404), 1, + [17547] = 3, + ACTIONS(942), 1, anon_sym_LPAREN, - ACTIONS(1406), 1, + ACTIONS(944), 1, aux_sym_if_command_token1, - STATE(689), 1, + STATE(529), 1, + aux_sym_if_command_repeat1, + [17557] = 3, + ACTIONS(918), 1, + aux_sym_if_command_token1, + ACTIONS(946), 1, + anon_sym_LPAREN, + STATE(532), 1, aux_sym_if_command_repeat1, - [24856] = 3, - ACTIONS(1408), 1, + [17567] = 3, + ACTIONS(948), 1, anon_sym_LPAREN, - ACTIONS(1410), 1, + ACTIONS(950), 1, aux_sym_if_command_token1, - STATE(690), 1, + STATE(532), 1, + aux_sym_if_command_repeat1, + [17577] = 3, + ACTIONS(953), 1, + anon_sym_LPAREN, + ACTIONS(955), 1, + aux_sym_if_command_token1, + STATE(531), 1, + aux_sym_if_command_repeat1, + [17587] = 1, + ACTIONS(626), 3, + anon_sym_GT, + anon_sym_COLON, + anon_sym_RPAREN, + [17593] = 3, + ACTIONS(918), 1, + aux_sym_if_command_token1, + ACTIONS(957), 1, + anon_sym_LPAREN, + STATE(532), 1, + aux_sym_if_command_repeat1, + [17603] = 3, + ACTIONS(918), 1, + aux_sym_if_command_token1, + ACTIONS(959), 1, + anon_sym_LPAREN, + STATE(532), 1, + aux_sym_if_command_repeat1, + [17613] = 3, + ACTIONS(918), 1, + aux_sym_if_command_token1, + ACTIONS(961), 1, + anon_sym_LPAREN, + STATE(532), 1, + aux_sym_if_command_repeat1, + [17623] = 3, + ACTIONS(918), 1, + aux_sym_if_command_token1, + ACTIONS(963), 1, + anon_sym_LPAREN, + STATE(532), 1, + aux_sym_if_command_repeat1, + [17633] = 3, + ACTIONS(918), 1, + aux_sym_if_command_token1, + ACTIONS(965), 1, + anon_sym_LPAREN, + STATE(532), 1, + aux_sym_if_command_repeat1, + [17643] = 3, + ACTIONS(967), 1, + anon_sym_LPAREN, + ACTIONS(969), 1, + aux_sym_if_command_token1, + STATE(535), 1, + aux_sym_if_command_repeat1, + [17653] = 3, + ACTIONS(971), 1, + anon_sym_LPAREN, + ACTIONS(973), 1, + aux_sym_if_command_token1, + STATE(536), 1, + aux_sym_if_command_repeat1, + [17663] = 3, + ACTIONS(975), 1, + anon_sym_LPAREN, + ACTIONS(977), 1, + aux_sym_if_command_token1, + STATE(537), 1, + aux_sym_if_command_repeat1, + [17673] = 3, + ACTIONS(979), 1, + anon_sym_LPAREN, + ACTIONS(981), 1, + aux_sym_if_command_token1, + STATE(538), 1, + aux_sym_if_command_repeat1, + [17683] = 3, + ACTIONS(983), 1, + anon_sym_LPAREN, + ACTIONS(985), 1, + aux_sym_if_command_token1, + STATE(539), 1, + aux_sym_if_command_repeat1, + [17693] = 3, + ACTIONS(918), 1, + aux_sym_if_command_token1, + ACTIONS(987), 1, + anon_sym_LPAREN, + STATE(532), 1, + aux_sym_if_command_repeat1, + [17703] = 3, + ACTIONS(989), 1, + anon_sym_LPAREN, + ACTIONS(991), 1, + aux_sym_if_command_token1, + STATE(545), 1, + aux_sym_if_command_repeat1, + [17713] = 3, + ACTIONS(918), 1, + aux_sym_if_command_token1, + ACTIONS(993), 1, + anon_sym_LPAREN, + STATE(532), 1, aux_sym_if_command_repeat1, - [24866] = 3, - ACTIONS(1382), 1, + [17723] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1412), 1, + ACTIONS(995), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [24876] = 3, - ACTIONS(1382), 1, + [17733] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1414), 1, + ACTIONS(997), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [24886] = 3, - ACTIONS(1382), 1, - aux_sym_if_command_token1, - ACTIONS(1416), 1, + [17743] = 3, + ACTIONS(999), 1, anon_sym_LPAREN, - STATE(744), 1, + ACTIONS(1001), 1, + aux_sym_if_command_token1, + STATE(631), 1, aux_sym_if_command_repeat1, - [24896] = 3, - ACTIONS(1382), 1, + [17753] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1418), 1, + ACTIONS(1003), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [24906] = 3, - ACTIONS(1382), 1, + [17763] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1420), 1, + ACTIONS(1005), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [24916] = 3, - ACTIONS(1382), 1, + [17773] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1422), 1, + ACTIONS(1007), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [24926] = 3, - ACTIONS(1382), 1, - aux_sym_if_command_token1, - ACTIONS(1424), 1, + [17783] = 3, + ACTIONS(1009), 1, anon_sym_LPAREN, - STATE(744), 1, + ACTIONS(1011), 1, + aux_sym_if_command_token1, + STATE(547), 1, aux_sym_if_command_repeat1, - [24936] = 3, - ACTIONS(1426), 1, + [17793] = 3, + ACTIONS(1013), 1, anon_sym_LPAREN, - ACTIONS(1428), 1, + ACTIONS(1015), 1, aux_sym_if_command_token1, - STATE(745), 1, + STATE(629), 1, aux_sym_if_command_repeat1, - [24946] = 3, - ACTIONS(1382), 1, + [17803] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1430), 1, + ACTIONS(1017), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [24956] = 3, - ACTIONS(1382), 1, + [17813] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1432), 1, + ACTIONS(1019), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [24966] = 3, - ACTIONS(1382), 1, + [17823] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1434), 1, + ACTIONS(1021), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [24976] = 3, - ACTIONS(1382), 1, + [17833] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1436), 1, + ACTIONS(1023), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [24986] = 3, - ACTIONS(1382), 1, + [17843] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1438), 1, + ACTIONS(1025), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [24996] = 3, - ACTIONS(1382), 1, + [17853] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1440), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25006] = 3, - ACTIONS(1442), 1, - anon_sym_LPAREN, - ACTIONS(1444), 1, + [17863] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - STATE(692), 1, - aux_sym_if_command_repeat1, - [25016] = 3, - ACTIONS(1446), 1, + ACTIONS(1029), 1, anon_sym_LPAREN, - ACTIONS(1448), 1, - aux_sym_if_command_token1, - STATE(693), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25026] = 3, - ACTIONS(1450), 1, - anon_sym_LPAREN, - ACTIONS(1452), 1, + [17873] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - STATE(694), 1, + ACTIONS(1031), 1, + anon_sym_LPAREN, + STATE(532), 1, aux_sym_if_command_repeat1, - [25036] = 3, - ACTIONS(1454), 1, + [17883] = 3, + ACTIONS(1033), 1, anon_sym_LPAREN, - ACTIONS(1456), 1, + ACTIONS(1035), 1, aux_sym_if_command_token1, - STATE(695), 1, + STATE(626), 1, aux_sym_if_command_repeat1, - [25046] = 3, - ACTIONS(1458), 1, + [17893] = 3, + ACTIONS(1037), 1, anon_sym_LPAREN, - ACTIONS(1460), 1, + ACTIONS(1039), 1, aux_sym_if_command_token1, - STATE(696), 1, + STATE(558), 1, aux_sym_if_command_repeat1, - [25056] = 3, - ACTIONS(1462), 1, + [17903] = 3, + ACTIONS(1041), 1, anon_sym_LPAREN, - ACTIONS(1464), 1, + ACTIONS(1043), 1, aux_sym_if_command_token1, - STATE(697), 1, + STATE(576), 1, aux_sym_if_command_repeat1, - [25066] = 3, - ACTIONS(1382), 1, - aux_sym_if_command_token1, - ACTIONS(1466), 1, + [17913] = 3, + ACTIONS(1045), 1, anon_sym_LPAREN, - STATE(744), 1, + ACTIONS(1047), 1, + aux_sym_if_command_token1, + STATE(559), 1, aux_sym_if_command_repeat1, - [25076] = 3, - ACTIONS(1468), 1, + [17923] = 3, + ACTIONS(1049), 1, anon_sym_LPAREN, - ACTIONS(1470), 1, + ACTIONS(1051), 1, aux_sym_if_command_token1, - STATE(704), 1, + STATE(561), 1, aux_sym_if_command_repeat1, - [25086] = 3, - ACTIONS(1472), 1, + [17933] = 3, + ACTIONS(1053), 1, anon_sym_LPAREN, - ACTIONS(1474), 1, + ACTIONS(1055), 1, aux_sym_if_command_token1, - STATE(780), 1, + STATE(562), 1, aux_sym_if_command_repeat1, - [25096] = 3, - ACTIONS(1476), 1, + [17943] = 3, + ACTIONS(1057), 1, anon_sym_LPAREN, - ACTIONS(1478), 1, + ACTIONS(1059), 1, aux_sym_if_command_token1, - STATE(781), 1, + STATE(563), 1, aux_sym_if_command_repeat1, - [25106] = 3, - ACTIONS(1480), 1, + [17953] = 3, + ACTIONS(1061), 1, anon_sym_LPAREN, - ACTIONS(1482), 1, + ACTIONS(1063), 1, aux_sym_if_command_token1, - STATE(782), 1, + STATE(552), 1, aux_sym_if_command_repeat1, - [25116] = 3, - ACTIONS(1382), 1, + [17963] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1484), 1, + ACTIONS(1065), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25126] = 3, - ACTIONS(1382), 1, - aux_sym_if_command_token1, - ACTIONS(1486), 1, + [17973] = 3, + ACTIONS(1067), 1, anon_sym_LPAREN, - STATE(744), 1, - aux_sym_if_command_repeat1, - [25136] = 3, - ACTIONS(1382), 1, + ACTIONS(1069), 1, aux_sym_if_command_token1, - ACTIONS(1488), 1, - anon_sym_LPAREN, - STATE(744), 1, + STATE(549), 1, aux_sym_if_command_repeat1, - [25146] = 3, - ACTIONS(1382), 1, - aux_sym_if_command_token1, - ACTIONS(1490), 1, + [17983] = 3, + ACTIONS(1071), 1, anon_sym_LPAREN, - STATE(744), 1, - aux_sym_if_command_repeat1, - [25156] = 3, - ACTIONS(1382), 1, + ACTIONS(1073), 1, aux_sym_if_command_token1, - ACTIONS(1492), 1, - anon_sym_LPAREN, - STATE(744), 1, + STATE(572), 1, aux_sym_if_command_repeat1, - [25166] = 3, - ACTIONS(1382), 1, + [17993] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1494), 1, + ACTIONS(1075), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25176] = 3, - ACTIONS(1496), 1, - anon_sym_LPAREN, - ACTIONS(1498), 1, + [18003] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - STATE(709), 1, - aux_sym_if_command_repeat1, - [25186] = 3, - ACTIONS(1500), 1, + ACTIONS(1077), 1, anon_sym_LPAREN, - ACTIONS(1502), 1, - aux_sym_if_command_token1, - STATE(710), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25196] = 3, - ACTIONS(1504), 1, + [18013] = 3, + ACTIONS(1079), 1, anon_sym_LPAREN, - ACTIONS(1506), 1, + ACTIONS(1081), 1, aux_sym_if_command_token1, - STATE(712), 1, + STATE(622), 1, aux_sym_if_command_repeat1, - [25206] = 3, - ACTIONS(1508), 1, + [18023] = 3, + ACTIONS(1083), 1, anon_sym_LPAREN, - ACTIONS(1510), 1, + ACTIONS(1085), 1, aux_sym_if_command_token1, - STATE(713), 1, + STATE(580), 1, aux_sym_if_command_repeat1, - [25216] = 3, - ACTIONS(1512), 1, + [18033] = 3, + ACTIONS(1087), 1, anon_sym_LPAREN, - ACTIONS(1514), 1, + ACTIONS(1089), 1, aux_sym_if_command_token1, - STATE(714), 1, + STATE(620), 1, aux_sym_if_command_repeat1, - [25226] = 3, - ACTIONS(1382), 1, + [18043] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1516), 1, + ACTIONS(1091), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25236] = 3, - ACTIONS(1518), 1, + [18053] = 3, + ACTIONS(1093), 1, anon_sym_LPAREN, - ACTIONS(1520), 1, + ACTIONS(1095), 1, aux_sym_if_command_token1, - STATE(790), 1, + STATE(575), 1, aux_sym_if_command_repeat1, - [25246] = 3, - ACTIONS(1522), 1, + [18063] = 3, + ACTIONS(1097), 1, anon_sym_LPAREN, - ACTIONS(1524), 1, + ACTIONS(1099), 1, aux_sym_if_command_token1, - STATE(720), 1, + STATE(638), 1, aux_sym_if_command_repeat1, - [25256] = 3, - ACTIONS(1526), 1, + [18073] = 3, + ACTIONS(1101), 1, anon_sym_LPAREN, - ACTIONS(1528), 1, + ACTIONS(1103), 1, aux_sym_if_command_token1, - STATE(779), 1, + STATE(632), 1, aux_sym_if_command_repeat1, - [25266] = 3, - ACTIONS(1530), 1, + [18083] = 3, + ACTIONS(1105), 1, anon_sym_LPAREN, - ACTIONS(1532), 1, + ACTIONS(1107), 1, aux_sym_if_command_token1, - STATE(752), 1, + STATE(604), 1, aux_sym_if_command_repeat1, - [25276] = 3, - ACTIONS(1534), 1, + [18093] = 3, + ACTIONS(1109), 1, anon_sym_LPAREN, - ACTIONS(1536), 1, - aux_sym_if_command_token1, - STATE(759), 1, - aux_sym_if_command_repeat1, - [25286] = 3, - ACTIONS(1382), 1, + ACTIONS(1111), 1, aux_sym_if_command_token1, - ACTIONS(1538), 1, - anon_sym_LPAREN, - STATE(744), 1, + STATE(609), 1, aux_sym_if_command_repeat1, - [25296] = 3, - ACTIONS(1382), 1, + [18103] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1540), 1, + ACTIONS(1113), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25306] = 3, - ACTIONS(1382), 1, + [18113] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1542), 1, + ACTIONS(1115), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25316] = 3, - ACTIONS(1382), 1, + [18123] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1544), 1, + ACTIONS(1117), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25326] = 3, - ACTIONS(1382), 1, + [18133] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1546), 1, + ACTIONS(1119), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25336] = 1, - ACTIONS(1062), 3, - anon_sym_GT, - anon_sym_COLON, - anon_sym_RPAREN, - [25342] = 3, - ACTIONS(1382), 1, + [18143] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1548), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25352] = 1, - ACTIONS(1022), 3, - anon_sym_GT, - anon_sym_COLON, - anon_sym_RPAREN, - [25358] = 3, - ACTIONS(1550), 1, + [18153] = 3, + ACTIONS(1123), 1, anon_sym_LPAREN, - ACTIONS(1552), 1, + ACTIONS(1125), 1, aux_sym_if_command_token1, - STATE(726), 1, + STATE(616), 1, aux_sym_if_command_repeat1, - [25368] = 1, - ACTIONS(1042), 3, - anon_sym_GT, - anon_sym_COLON, - anon_sym_RPAREN, - [25374] = 3, - ACTIONS(1554), 1, + [18163] = 3, + ACTIONS(1127), 1, anon_sym_LPAREN, - ACTIONS(1556), 1, + ACTIONS(1129), 1, aux_sym_if_command_token1, - STATE(727), 1, + STATE(586), 1, aux_sym_if_command_repeat1, - [25384] = 3, - ACTIONS(1558), 1, + [18173] = 3, + ACTIONS(1131), 1, anon_sym_LPAREN, - ACTIONS(1560), 1, + ACTIONS(1133), 1, aux_sym_if_command_token1, - STATE(728), 1, + STATE(587), 1, aux_sym_if_command_repeat1, - [25394] = 3, - ACTIONS(1562), 1, + [18183] = 3, + ACTIONS(1135), 1, anon_sym_LPAREN, - ACTIONS(1564), 1, + ACTIONS(1137), 1, aux_sym_if_command_token1, - STATE(729), 1, + STATE(588), 1, aux_sym_if_command_repeat1, - [25404] = 3, - ACTIONS(1566), 1, + [18193] = 3, + ACTIONS(1139), 1, anon_sym_LPAREN, - ACTIONS(1568), 1, + ACTIONS(1141), 1, aux_sym_if_command_token1, - STATE(730), 1, + STATE(589), 1, aux_sym_if_command_repeat1, - [25414] = 3, - ACTIONS(1570), 1, + [18203] = 3, + ACTIONS(1143), 1, anon_sym_LPAREN, - ACTIONS(1572), 1, + ACTIONS(1145), 1, aux_sym_if_command_token1, - STATE(732), 1, + STATE(590), 1, aux_sym_if_command_repeat1, - [25424] = 3, - ACTIONS(1382), 1, + [18213] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1574), 1, - anon_sym_LPAREN, - STATE(744), 1, - aux_sym_if_command_repeat1, - [25434] = 3, - ACTIONS(1576), 1, + ACTIONS(1147), 1, anon_sym_LPAREN, - ACTIONS(1578), 1, - aux_sym_if_command_token1, - STATE(741), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25444] = 3, - ACTIONS(1580), 1, + [18223] = 3, + ACTIONS(1149), 1, anon_sym_LPAREN, - ACTIONS(1582), 1, + ACTIONS(1151), 1, aux_sym_if_command_token1, - STATE(758), 1, + STATE(597), 1, aux_sym_if_command_repeat1, - [25454] = 3, - ACTIONS(1584), 1, + [18233] = 3, + ACTIONS(1153), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, + ACTIONS(1155), 1, aux_sym_if_command_token1, - STATE(744), 1, + STATE(619), 1, aux_sym_if_command_repeat1, - [25464] = 3, - ACTIONS(1382), 1, + [18243] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1589), 1, + ACTIONS(1157), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25474] = 3, - ACTIONS(1591), 1, - anon_sym_GT, - ACTIONS(1593), 1, - anon_sym_COLON, - STATE(825), 1, - sym__gen_exp_arguments, - [25484] = 3, - ACTIONS(1382), 1, - aux_sym_if_command_token1, - ACTIONS(1595), 1, + [18253] = 3, + ACTIONS(1159), 1, anon_sym_LPAREN, - STATE(744), 1, - aux_sym_if_command_repeat1, - [25494] = 3, - ACTIONS(1382), 1, + ACTIONS(1161), 1, aux_sym_if_command_token1, - ACTIONS(1597), 1, - anon_sym_LPAREN, - STATE(744), 1, + STATE(623), 1, aux_sym_if_command_repeat1, - [25504] = 3, - ACTIONS(1382), 1, - aux_sym_if_command_token1, - ACTIONS(1599), 1, + [18263] = 3, + ACTIONS(1163), 1, anon_sym_LPAREN, - STATE(744), 1, - aux_sym_if_command_repeat1, - [25514] = 3, - ACTIONS(1601), 1, - anon_sym_LBRACE, - ACTIONS(1603), 1, - anon_sym_ENV, - ACTIONS(1605), 1, - anon_sym_CACHE, - [25524] = 3, - ACTIONS(1382), 1, + ACTIONS(1165), 1, aux_sym_if_command_token1, - ACTIONS(1607), 1, + STATE(548), 1, + aux_sym_if_command_repeat1, + [18273] = 3, + ACTIONS(1167), 1, anon_sym_LPAREN, - STATE(744), 1, + ACTIONS(1169), 1, + aux_sym_if_command_token1, + STATE(600), 1, aux_sym_if_command_repeat1, - [25534] = 3, - ACTIONS(1382), 1, + [18283] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1609), 1, + ACTIONS(1171), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25544] = 3, - ACTIONS(1382), 1, + [18293] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1611), 1, + ACTIONS(1173), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25554] = 3, - ACTIONS(1382), 1, + [18303] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1613), 1, + ACTIONS(1175), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25564] = 3, - ACTIONS(1615), 1, - anon_sym_LPAREN, - ACTIONS(1617), 1, + [18313] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - STATE(747), 1, - aux_sym_if_command_repeat1, - [25574] = 3, - ACTIONS(1619), 1, + ACTIONS(1177), 1, anon_sym_LPAREN, - ACTIONS(1621), 1, - aux_sym_if_command_token1, - STATE(748), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25584] = 3, - ACTIONS(1623), 1, - anon_sym_LPAREN, - ACTIONS(1625), 1, + [18323] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - STATE(749), 1, + ACTIONS(1179), 1, + anon_sym_LPAREN, + STATE(532), 1, aux_sym_if_command_repeat1, - [25594] = 3, - ACTIONS(1382), 1, + [18333] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1627), 1, + ACTIONS(1181), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25604] = 3, - ACTIONS(1382), 1, + [18343] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1629), 1, + ACTIONS(1183), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25614] = 3, - ACTIONS(1631), 1, - anon_sym_LPAREN, - ACTIONS(1633), 1, + [18353] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - STATE(751), 1, - aux_sym_if_command_repeat1, - [25624] = 3, - ACTIONS(1635), 1, + ACTIONS(1185), 1, anon_sym_LPAREN, - ACTIONS(1637), 1, - aux_sym_if_command_token1, - STATE(753), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25634] = 3, - ACTIONS(1639), 1, + [18363] = 3, + ACTIONS(1187), 1, anon_sym_LPAREN, - ACTIONS(1641), 1, + ACTIONS(1189), 1, aux_sym_if_command_token1, - STATE(754), 1, + STATE(610), 1, aux_sym_if_command_repeat1, - [25644] = 3, - ACTIONS(1382), 1, - aux_sym_if_command_token1, - ACTIONS(1643), 1, + [18373] = 3, + ACTIONS(1191), 1, + anon_sym_LBRACE, + ACTIONS(1193), 1, + anon_sym_ENV, + ACTIONS(1195), 1, + anon_sym_CACHE, + [18383] = 3, + ACTIONS(1197), 1, anon_sym_LPAREN, - STATE(744), 1, + ACTIONS(1199), 1, + aux_sym_if_command_token1, + STATE(608), 1, aux_sym_if_command_repeat1, - [25654] = 3, - ACTIONS(1645), 1, + [18393] = 3, + ACTIONS(1201), 1, anon_sym_LPAREN, - ACTIONS(1647), 1, + ACTIONS(1203), 1, aux_sym_if_command_token1, - STATE(765), 1, + STATE(607), 1, aux_sym_if_command_repeat1, - [25664] = 3, - ACTIONS(1382), 1, + [18403] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1649), 1, + ACTIONS(1205), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25674] = 3, - ACTIONS(1651), 1, + [18413] = 3, + ACTIONS(1207), 1, anon_sym_LPAREN, - ACTIONS(1653), 1, + ACTIONS(1209), 1, aux_sym_if_command_token1, - STATE(772), 1, + STATE(633), 1, aux_sym_if_command_repeat1, - [25684] = 3, - ACTIONS(1655), 1, + [18423] = 3, + ACTIONS(1211), 1, anon_sym_LPAREN, - ACTIONS(1657), 1, + ACTIONS(1213), 1, aux_sym_if_command_token1, - STATE(773), 1, + STATE(606), 1, aux_sym_if_command_repeat1, - [25694] = 3, - ACTIONS(1659), 1, - anon_sym_LPAREN, - ACTIONS(1661), 1, + [18433] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - STATE(774), 1, - aux_sym_if_command_repeat1, - [25704] = 3, - ACTIONS(1663), 1, + ACTIONS(1215), 1, anon_sym_LPAREN, - ACTIONS(1665), 1, - aux_sym_if_command_token1, - STATE(676), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25714] = 3, - ACTIONS(1667), 1, - anon_sym_LPAREN, - ACTIONS(1669), 1, + [18443] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - STATE(776), 1, - aux_sym_if_command_repeat1, - [25724] = 3, - ACTIONS(1671), 1, + ACTIONS(1217), 1, anon_sym_LPAREN, - ACTIONS(1673), 1, - aux_sym_if_command_token1, - STATE(777), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25734] = 3, - ACTIONS(1382), 1, + [18453] = 3, + ACTIONS(1219), 1, + anon_sym_GT, + ACTIONS(1221), 1, + anon_sym_COLON, + STATE(745), 1, + sym__gen_exp_arguments, + [18463] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1675), 1, + ACTIONS(1223), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25744] = 3, - ACTIONS(1382), 1, + [18473] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1677), 1, + ACTIONS(1225), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25754] = 3, - ACTIONS(1382), 1, + [18483] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1679), 1, + ACTIONS(1227), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25764] = 3, - ACTIONS(1681), 1, + [18493] = 3, + ACTIONS(1229), 1, anon_sym_LPAREN, - ACTIONS(1683), 1, + ACTIONS(1231), 1, aux_sym_if_command_token1, - STATE(763), 1, + STATE(605), 1, aux_sym_if_command_repeat1, - [25774] = 3, - ACTIONS(1382), 1, + [18503] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1685), 1, + ACTIONS(1233), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25784] = 3, - ACTIONS(1382), 1, + [18513] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1687), 1, - anon_sym_LPAREN, - STATE(744), 1, - aux_sym_if_command_repeat1, - [25794] = 3, - ACTIONS(1689), 1, + ACTIONS(1235), 1, anon_sym_LPAREN, - ACTIONS(1691), 1, - aux_sym_if_command_token1, - STATE(684), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25804] = 3, - ACTIONS(1382), 1, + [18523] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1693), 1, + ACTIONS(1237), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25814] = 3, - ACTIONS(1382), 1, + [18533] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1695), 1, + ACTIONS(1239), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25824] = 3, - ACTIONS(1382), 1, + [18543] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1697), 1, + ACTIONS(1241), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25834] = 3, - ACTIONS(1382), 1, + [18553] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1699), 1, + ACTIONS(1243), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25844] = 3, - ACTIONS(1701), 1, - anon_sym_LPAREN, - ACTIONS(1703), 1, + [18563] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - STATE(784), 1, + ACTIONS(1245), 1, + anon_sym_LPAREN, + STATE(532), 1, aux_sym_if_command_repeat1, - [25854] = 3, - ACTIONS(1382), 1, + [18573] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1705), 1, + ACTIONS(1247), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25864] = 3, - ACTIONS(1707), 1, + [18583] = 3, + ACTIONS(1249), 1, anon_sym_LPAREN, - ACTIONS(1709), 1, + ACTIONS(1251), 1, aux_sym_if_command_token1, - STATE(791), 1, + STATE(611), 1, aux_sym_if_command_repeat1, - [25874] = 3, - ACTIONS(1711), 1, + [18593] = 3, + ACTIONS(1253), 1, anon_sym_LPAREN, - ACTIONS(1713), 1, + ACTIONS(1255), 1, aux_sym_if_command_token1, - STATE(788), 1, + STATE(624), 1, aux_sym_if_command_repeat1, - [25884] = 3, - ACTIONS(1715), 1, + [18603] = 3, + ACTIONS(1257), 1, anon_sym_LPAREN, - ACTIONS(1717), 1, - aux_sym_if_command_token1, - STATE(793), 1, - aux_sym_if_command_repeat1, - [25894] = 3, - ACTIONS(1382), 1, + ACTIONS(1259), 1, aux_sym_if_command_token1, - ACTIONS(1719), 1, - anon_sym_LPAREN, - STATE(744), 1, + STATE(627), 1, aux_sym_if_command_repeat1, - [25904] = 3, - ACTIONS(1721), 1, + [18613] = 3, + ACTIONS(1261), 1, anon_sym_LPAREN, - ACTIONS(1723), 1, - aux_sym_if_command_token1, - STATE(711), 1, - aux_sym_if_command_repeat1, - [25914] = 3, - ACTIONS(1382), 1, + ACTIONS(1263), 1, aux_sym_if_command_token1, - ACTIONS(1725), 1, - anon_sym_LPAREN, - STATE(744), 1, + STATE(628), 1, aux_sym_if_command_repeat1, - [25924] = 3, - ACTIONS(1382), 1, + [18623] = 3, + ACTIONS(918), 1, aux_sym_if_command_token1, - ACTIONS(1727), 1, + ACTIONS(1265), 1, anon_sym_LPAREN, - STATE(744), 1, + STATE(532), 1, aux_sym_if_command_repeat1, - [25934] = 3, - ACTIONS(1729), 1, + [18633] = 3, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1731), 1, + ACTIONS(1269), 1, aux_sym_if_command_token1, - STATE(794), 1, - aux_sym_if_command_repeat1, - [25944] = 3, - ACTIONS(1382), 1, - aux_sym_if_command_token1, - ACTIONS(1733), 1, - anon_sym_LPAREN, - STATE(744), 1, + STATE(630), 1, aux_sym_if_command_repeat1, - [25954] = 3, - ACTIONS(1382), 1, - aux_sym_if_command_token1, - ACTIONS(1735), 1, + [18643] = 3, + ACTIONS(1271), 1, anon_sym_LPAREN, - STATE(744), 1, - aux_sym_if_command_repeat1, - [25964] = 3, - ACTIONS(1382), 1, + ACTIONS(1273), 1, aux_sym_if_command_token1, - ACTIONS(1737), 1, - anon_sym_LPAREN, - STATE(744), 1, + STATE(521), 1, aux_sym_if_command_repeat1, - [25974] = 2, - ACTIONS(1739), 1, + [18653] = 2, + ACTIONS(1275), 1, + sym_endforeach, + STATE(354), 1, + sym_endforeach_command, + [18660] = 2, + ACTIONS(1277), 1, + anon_sym_RPAREN, + ACTIONS(1279), 1, + aux_sym_endwhile_command_token1, + [18667] = 2, + ACTIONS(1281), 1, + sym_endwhile, + STATE(280), 1, + sym_endwhile_command, + [18674] = 2, + ACTIONS(1283), 1, + sym_endfunction, + STATE(282), 1, + sym_endfunction_command, + [18681] = 2, + ACTIONS(1285), 1, + sym_endmacro, + STATE(287), 1, + sym_endmacro_command, + [18688] = 2, + ACTIONS(1287), 1, + sym_endblock, + STATE(286), 1, + sym_endblock_command, + [18695] = 2, + ACTIONS(1289), 1, + anon_sym_RPAREN, + ACTIONS(1291), 1, + aux_sym_endwhile_command_token1, + [18702] = 2, + ACTIONS(1293), 1, + anon_sym_RPAREN, + ACTIONS(1295), 1, + aux_sym_endwhile_command_token1, + [18709] = 2, + ACTIONS(1297), 1, + sym_endforeach, + STATE(397), 1, + sym_endforeach_command, + [18716] = 2, + ACTIONS(1299), 1, + sym_endwhile, + STATE(466), 1, + sym_endwhile_command, + [18723] = 2, + ACTIONS(1301), 1, + sym_endforeach, + STATE(342), 1, + sym_endforeach_command, + [18730] = 2, + ACTIONS(1303), 1, + sym_endwhile, + STATE(378), 1, + sym_endwhile_command, + [18737] = 2, + ACTIONS(1305), 1, + sym_endfunction, + STATE(471), 1, + sym_endfunction_command, + [18744] = 2, + ACTIONS(1307), 1, + sym_endforeach, + STATE(390), 1, + sym_endforeach_command, + [18751] = 2, + ACTIONS(1309), 1, + sym_endwhile, + STATE(391), 1, + sym_endwhile_command, + [18758] = 2, + ACTIONS(1311), 1, + sym_endfunction, + STATE(392), 1, + sym_endfunction_command, + [18765] = 2, + ACTIONS(1313), 1, + sym_endmacro, + STATE(393), 1, + sym_endmacro_command, + [18772] = 2, + ACTIONS(1315), 1, + sym_endblock, + STATE(394), 1, + sym_endblock_command, + [18779] = 2, + ACTIONS(1317), 1, + sym_endfunction, + STATE(386), 1, + sym_endfunction_command, + [18786] = 2, + ACTIONS(1319), 1, + sym_endmacro, + STATE(387), 1, + sym_endmacro_command, + [18793] = 2, + ACTIONS(1321), 1, + sym_endmacro, + STATE(472), 1, + sym_endmacro_command, + [18800] = 2, + ACTIONS(1323), 1, + sym_endblock, + STATE(474), 1, + sym_endblock_command, + [18807] = 2, + ACTIONS(1325), 1, + sym_endblock, + STATE(463), 1, + sym_endblock_command, + [18814] = 2, + ACTIONS(1327), 1, + anon_sym_RPAREN, + ACTIONS(1329), 1, + aux_sym_endwhile_command_token1, + [18821] = 2, + ACTIONS(1331), 1, + anon_sym_RPAREN, + ACTIONS(1333), 1, + aux_sym_endwhile_command_token1, + [18828] = 2, + ACTIONS(1335), 1, + anon_sym_RPAREN, + ACTIONS(1337), 1, + aux_sym_endwhile_command_token1, + [18835] = 2, + ACTIONS(1339), 1, + sym_endforeach, + STATE(317), 1, + sym_endforeach_command, + [18842] = 2, + ACTIONS(1341), 1, + sym_endwhile, + STATE(318), 1, + sym_endwhile_command, + [18849] = 2, + ACTIONS(1343), 1, + anon_sym_RPAREN, + ACTIONS(1345), 1, + aux_sym_endwhile_command_token1, + [18856] = 2, + ACTIONS(1347), 1, + sym_endfunction, + STATE(319), 1, + sym_endfunction_command, + [18863] = 2, + ACTIONS(1349), 1, + sym_endmacro, + STATE(320), 1, + sym_endmacro_command, + [18870] = 2, + ACTIONS(1351), 1, + sym_endblock, + STATE(321), 1, + sym_endblock_command, + [18877] = 2, + ACTIONS(1353), 1, anon_sym_RPAREN, - ACTIONS(1741), 1, + ACTIONS(1355), 1, aux_sym_endwhile_command_token1, - [25981] = 2, - ACTIONS(1743), 1, + [18884] = 2, + ACTIONS(1357), 1, anon_sym_RPAREN, - ACTIONS(1745), 1, + ACTIONS(1359), 1, aux_sym_endwhile_command_token1, - [25988] = 2, - ACTIONS(1747), 1, + [18891] = 2, + ACTIONS(1361), 1, anon_sym_RPAREN, - ACTIONS(1749), 1, + ACTIONS(1363), 1, aux_sym_endwhile_command_token1, - [25995] = 2, - ACTIONS(1751), 1, + [18898] = 2, + ACTIONS(1365), 1, anon_sym_RPAREN, - ACTIONS(1753), 1, + ACTIONS(1367), 1, aux_sym_endwhile_command_token1, - [26002] = 2, - ACTIONS(1755), 1, + [18905] = 2, + ACTIONS(1369), 1, anon_sym_RPAREN, - ACTIONS(1757), 1, + ACTIONS(1371), 1, aux_sym_endwhile_command_token1, - [26009] = 2, - ACTIONS(1759), 1, + [18912] = 2, + ACTIONS(1373), 1, anon_sym_RPAREN, - ACTIONS(1761), 1, + ACTIONS(1375), 1, aux_sym_endwhile_command_token1, - [26016] = 2, - ACTIONS(1763), 1, + [18919] = 2, + ACTIONS(1377), 1, + sym_endfunction, + STATE(356), 1, + sym_endfunction_command, + [18926] = 2, + ACTIONS(1379), 1, + sym_endblock, + STATE(358), 1, + sym_endblock_command, + [18933] = 2, + ACTIONS(1381), 1, + sym_endmacro, + STATE(357), 1, + sym_endmacro_command, + [18940] = 2, + ACTIONS(1383), 1, anon_sym_RPAREN, - ACTIONS(1765), 1, + ACTIONS(1385), 1, aux_sym_endwhile_command_token1, - [26023] = 2, - ACTIONS(1767), 1, + [18947] = 2, + ACTIONS(1387), 1, + sym_endforeach, + STATE(427), 1, + sym_endforeach_command, + [18954] = 2, + ACTIONS(1389), 1, + sym_endwhile, + STATE(428), 1, + sym_endwhile_command, + [18961] = 2, + ACTIONS(1391), 1, + sym_endfunction, + STATE(429), 1, + sym_endfunction_command, + [18968] = 2, + ACTIONS(1393), 1, + sym_endmacro, + STATE(430), 1, + sym_endmacro_command, + [18975] = 2, + ACTIONS(1395), 1, + sym_endblock, + STATE(431), 1, + sym_endblock_command, + [18982] = 2, + ACTIONS(1397), 1, + sym_endforeach, + STATE(279), 1, + sym_endforeach_command, + [18989] = 2, + ACTIONS(1399), 1, + sym_endwhile, + STATE(355), 1, + sym_endwhile_command, + [18996] = 1, + ACTIONS(1401), 1, anon_sym_RPAREN, - ACTIONS(1769), 1, - aux_sym_endwhile_command_token1, - [26030] = 2, - ACTIONS(1771), 1, + [19000] = 1, + ACTIONS(127), 1, anon_sym_RPAREN, - ACTIONS(1773), 1, - aux_sym_endwhile_command_token1, - [26037] = 2, - ACTIONS(1775), 1, + [19004] = 1, + ACTIONS(1403), 1, anon_sym_RPAREN, - ACTIONS(1777), 1, - aux_sym_endwhile_command_token1, - [26044] = 2, - ACTIONS(1779), 1, + [19008] = 1, + ACTIONS(1405), 1, anon_sym_RPAREN, - ACTIONS(1781), 1, - aux_sym_endwhile_command_token1, - [26051] = 2, - ACTIONS(1783), 1, + [19012] = 1, + ACTIONS(1407), 1, anon_sym_RPAREN, - ACTIONS(1785), 1, - aux_sym_endwhile_command_token1, - [26058] = 2, - ACTIONS(1787), 1, + [19016] = 1, + ACTIONS(1409), 1, anon_sym_RPAREN, - ACTIONS(1789), 1, - aux_sym_endwhile_command_token1, - [26065] = 2, - ACTIONS(1791), 1, + [19020] = 1, + ACTIONS(1411), 1, anon_sym_RPAREN, - ACTIONS(1793), 1, - aux_sym_endwhile_command_token1, - [26072] = 1, - ACTIONS(1795), 1, + [19024] = 1, + ACTIONS(1413), 1, + anon_sym_RPAREN, + [19028] = 1, + ACTIONS(1415), 1, + anon_sym_RBRACE, + [19032] = 1, + ACTIONS(133), 1, + anon_sym_RPAREN, + [19036] = 1, + ACTIONS(1417), 1, + anon_sym_RPAREN, + [19040] = 1, + ACTIONS(139), 1, + anon_sym_RPAREN, + [19044] = 1, + ACTIONS(59), 1, + anon_sym_RPAREN, + [19048] = 1, + ACTIONS(1419), 1, + anon_sym_RBRACE, + [19052] = 1, + ACTIONS(1421), 1, + anon_sym_RPAREN, + [19056] = 1, + ACTIONS(464), 1, + anon_sym_RPAREN, + [19060] = 1, + ACTIONS(151), 1, + anon_sym_RPAREN, + [19064] = 1, + ACTIONS(161), 1, + anon_sym_RPAREN, + [19068] = 1, + ACTIONS(1423), 1, + anon_sym_RPAREN, + [19072] = 1, + ACTIONS(165), 1, + anon_sym_RPAREN, + [19076] = 1, + ACTIONS(1425), 1, + anon_sym_RPAREN, + [19080] = 1, + ACTIONS(169), 1, + anon_sym_RPAREN, + [19084] = 1, + ACTIONS(1427), 1, + anon_sym_RBRACE, + [19088] = 1, + ACTIONS(1429), 1, anon_sym_RBRACE, - [26076] = 1, - ACTIONS(1797), 1, + [19092] = 1, + ACTIONS(1431), 1, + anon_sym_RPAREN, + [19096] = 1, + ACTIONS(1433), 1, + anon_sym_RPAREN, + [19100] = 1, + ACTIONS(1435), 1, + anon_sym_RPAREN, + [19104] = 1, + ACTIONS(1437), 1, + anon_sym_RPAREN, + [19108] = 1, + ACTIONS(1439), 1, + anon_sym_RPAREN, + [19112] = 1, + ACTIONS(1441), 1, + anon_sym_RPAREN, + [19116] = 1, + ACTIONS(1443), 1, + anon_sym_RPAREN, + [19120] = 1, + ACTIONS(1445), 1, + anon_sym_RPAREN, + [19124] = 1, + ACTIONS(1447), 1, + anon_sym_RPAREN, + [19128] = 1, + ACTIONS(123), 1, + anon_sym_RPAREN, + [19132] = 1, + ACTIONS(101), 1, + anon_sym_RPAREN, + [19136] = 1, + ACTIONS(97), 1, + anon_sym_RPAREN, + [19140] = 1, + ACTIONS(71), 1, + anon_sym_RPAREN, + [19144] = 1, + ACTIONS(1449), 1, + anon_sym_RPAREN, + [19148] = 1, + ACTIONS(444), 1, + anon_sym_RPAREN, + [19152] = 1, + ACTIONS(1451), 1, aux_sym_endwhile_command_token1, - [26080] = 1, - ACTIONS(1799), 1, + [19156] = 1, + ACTIONS(1453), 1, + aux_sym_endwhile_command_token1, + [19160] = 1, + ACTIONS(1455), 1, + anon_sym_RPAREN, + [19164] = 1, + ACTIONS(1457), 1, + anon_sym_RPAREN, + [19168] = 1, + ACTIONS(1459), 1, + anon_sym_GT, + [19172] = 1, + ACTIONS(1461), 1, anon_sym_RPAREN, - [26084] = 1, - ACTIONS(1801), 1, + [19176] = 1, + ACTIONS(1463), 1, + anon_sym_DQUOTE, + [19180] = 1, + ACTIONS(1465), 1, anon_sym_LBRACE, - [26088] = 1, - ACTIONS(1803), 1, + [19184] = 1, + ACTIONS(1467), 1, anon_sym_RBRACE, - [26092] = 1, - ACTIONS(1805), 1, - anon_sym_DQUOTE, - [26096] = 1, - ACTIONS(1807), 1, + [19188] = 1, + ACTIONS(103), 1, + anon_sym_RPAREN, + [19192] = 1, + ACTIONS(99), 1, + anon_sym_RPAREN, + [19196] = 1, + ACTIONS(1469), 1, anon_sym_RBRACE, - [26100] = 1, - ACTIONS(1809), 1, - anon_sym_GT, - [26104] = 1, - ACTIONS(876), 1, + [19200] = 1, + ACTIONS(95), 1, + anon_sym_RPAREN, + [19204] = 1, + ACTIONS(1471), 1, anon_sym_RPAREN, - [26108] = 1, - ACTIONS(1811), 1, + [19208] = 1, + ACTIONS(1473), 1, + anon_sym_RBRACE, + [19212] = 1, + ACTIONS(1475), 1, + anon_sym_LBRACE, + [19216] = 1, + ACTIONS(1477), 1, + anon_sym_GT, + [19220] = 1, + ACTIONS(1479), 1, anon_sym_RPAREN, - [26112] = 1, - ACTIONS(1813), 1, + [19224] = 1, + ACTIONS(1481), 1, aux_sym_endwhile_command_token1, - [26116] = 1, - ACTIONS(1815), 1, + [19228] = 1, + ACTIONS(1483), 1, aux_sym_endwhile_command_token1, - [26120] = 1, - ACTIONS(1817), 1, + [19232] = 1, + ACTIONS(1485), 1, aux_sym_endwhile_command_token1, - [26124] = 1, - ACTIONS(1819), 1, + [19236] = 1, + ACTIONS(1487), 1, + anon_sym_RPAREN, + [19240] = 1, + ACTIONS(1489), 1, + anon_sym_RPAREN, + [19244] = 1, + ACTIONS(1491), 1, + anon_sym_RPAREN, + [19248] = 1, + ACTIONS(1493), 1, + anon_sym_RPAREN, + [19252] = 1, + ACTIONS(1495), 1, + anon_sym_RPAREN, + [19256] = 1, + ACTIONS(1497), 1, anon_sym_RBRACE, - [26128] = 1, - ACTIONS(1821), 1, + [19260] = 1, + ACTIONS(1499), 1, anon_sym_RBRACE, - [26132] = 1, - ACTIONS(1823), 1, - anon_sym_GT, - [26136] = 1, - ACTIONS(1825), 1, + [19264] = 1, + ACTIONS(141), 1, anon_sym_RPAREN, - [26140] = 1, - ACTIONS(1827), 1, - aux_sym_endwhile_command_token1, - [26144] = 1, - ACTIONS(1829), 1, + [19268] = 1, + ACTIONS(155), 1, anon_sym_RPAREN, - [26148] = 1, - ACTIONS(1831), 1, + [19272] = 1, + ACTIONS(1501), 1, anon_sym_RPAREN, - [26152] = 1, - ACTIONS(1833), 1, + [19276] = 1, + ACTIONS(159), 1, + anon_sym_RPAREN, + [19280] = 1, + ACTIONS(147), 1, + anon_sym_RPAREN, + [19284] = 1, + ACTIONS(466), 1, anon_sym_RPAREN, - [26156] = 1, - ACTIONS(1835), 1, + [19288] = 1, + ACTIONS(1503), 1, + anon_sym_RPAREN, + [19292] = 1, + ACTIONS(1505), 1, + anon_sym_GT, + [19296] = 1, + ACTIONS(1507), 1, anon_sym_RBRACE, - [26160] = 1, - ACTIONS(868), 1, + [19300] = 1, + ACTIONS(1509), 1, anon_sym_RPAREN, - [26164] = 1, - ACTIONS(870), 1, + [19304] = 1, + ACTIONS(1511), 1, anon_sym_RPAREN, - [26168] = 1, - ACTIONS(1837), 1, + [19308] = 1, + ACTIONS(1513), 1, anon_sym_RBRACE, - [26172] = 1, - ACTIONS(1042), 1, - aux_sym_endwhile_command_token1, - [26176] = 1, - ACTIONS(1839), 1, + [19312] = 1, + ACTIONS(1515), 1, anon_sym_RPAREN, - [26180] = 1, - ACTIONS(1022), 1, + [19316] = 1, + ACTIONS(1517), 1, aux_sym_endwhile_command_token1, - [26184] = 1, - ACTIONS(1841), 1, + [19320] = 1, + ACTIONS(1519), 1, aux_sym_endwhile_command_token1, - [26188] = 1, - ACTIONS(1843), 1, + [19324] = 1, + ACTIONS(215), 1, + anon_sym_RPAREN, + [19328] = 1, + ACTIONS(1521), 1, + anon_sym_RPAREN, + [19332] = 1, + ACTIONS(1523), 1, + anon_sym_DQUOTE, + [19336] = 1, + ACTIONS(1525), 1, aux_sym_endwhile_command_token1, - [26192] = 1, - ACTIONS(1845), 1, - anon_sym_GT, - [26196] = 1, - ACTIONS(1847), 1, + [19340] = 1, + ACTIONS(225), 1, anon_sym_RPAREN, - [26200] = 1, - ACTIONS(1849), 1, + [19344] = 1, + ACTIONS(157), 1, anon_sym_RPAREN, - [26204] = 1, - ACTIONS(1851), 1, - anon_sym_RBRACE, - [26208] = 1, - ACTIONS(1853), 1, + [19348] = 1, + ACTIONS(1527), 1, + anon_sym_GT, + [19352] = 1, + ACTIONS(1529), 1, anon_sym_RBRACE, - [26212] = 1, - ACTIONS(1855), 1, + [19356] = 1, + ACTIONS(113), 1, + anon_sym_RPAREN, + [19360] = 1, + ACTIONS(111), 1, + anon_sym_RPAREN, + [19364] = 1, + ACTIONS(452), 1, + anon_sym_RPAREN, + [19368] = 1, + ACTIONS(1531), 1, + anon_sym_RPAREN, + [19372] = 1, + ACTIONS(1533), 1, + anon_sym_RPAREN, + [19376] = 1, + ACTIONS(1535), 1, + anon_sym_RPAREN, + [19380] = 1, + ACTIONS(1537), 1, + anon_sym_RPAREN, + [19384] = 1, + ACTIONS(1539), 1, + anon_sym_RPAREN, + [19388] = 1, + ACTIONS(1541), 1, + anon_sym_RPAREN, + [19392] = 1, + ACTIONS(1543), 1, + anon_sym_RPAREN, + [19396] = 1, + ACTIONS(1545), 1, anon_sym_RBRACE, - [26216] = 1, - ACTIONS(1857), 1, + [19400] = 1, + ACTIONS(1547), 1, anon_sym_RBRACE, - [26220] = 1, - ACTIONS(1859), 1, - anon_sym_DQUOTE, - [26224] = 1, - ACTIONS(1062), 1, + [19404] = 1, + ACTIONS(1549), 1, + anon_sym_RPAREN, + [19408] = 1, + ACTIONS(1551), 1, + anon_sym_RPAREN, + [19412] = 1, + ACTIONS(1553), 1, aux_sym_endwhile_command_token1, - [26228] = 1, - ACTIONS(1861), 1, + [19416] = 1, + ACTIONS(1555), 1, + aux_sym_endwhile_command_token1, + [19420] = 1, + ACTIONS(229), 1, anon_sym_RPAREN, - [26232] = 1, - ACTIONS(1863), 1, - anon_sym_DQUOTE, - [26236] = 1, - ACTIONS(1865), 1, + [19424] = 1, + ACTIONS(1557), 1, + anon_sym_RPAREN, + [19428] = 1, + ACTIONS(1559), 1, + anon_sym_RPAREN, + [19432] = 1, + ACTIONS(1561), 1, + anon_sym_RPAREN, + [19436] = 1, + ACTIONS(231), 1, + anon_sym_RPAREN, + [19440] = 1, + ACTIONS(1563), 1, + anon_sym_RPAREN, + [19444] = 1, + ACTIONS(221), 1, + anon_sym_RPAREN, + [19448] = 1, + ACTIONS(1565), 1, + anon_sym_RPAREN, + [19452] = 1, + ACTIONS(448), 1, + anon_sym_RPAREN, + [19456] = 1, + ACTIONS(1567), 1, + anon_sym_RPAREN, + [19460] = 1, + ACTIONS(1569), 1, anon_sym_GT, - [26240] = 1, - ACTIONS(1867), 1, + [19464] = 1, + ACTIONS(1571), 1, anon_sym_RBRACE, - [26244] = 1, - ACTIONS(1869), 1, - anon_sym_RBRACE, - [26248] = 1, - ACTIONS(1871), 1, + [19468] = 1, + ACTIONS(1573), 1, anon_sym_GT, - [26252] = 1, - ACTIONS(1873), 1, - anon_sym_LBRACE, - [26256] = 1, - ACTIONS(1875), 1, + [19472] = 1, + ACTIONS(171), 1, + anon_sym_RPAREN, + [19476] = 1, + ACTIONS(1575), 1, + anon_sym_RBRACE, + [19480] = 1, + ACTIONS(1577), 1, + anon_sym_RPAREN, + [19484] = 1, + ACTIONS(1579), 1, + anon_sym_DQUOTE, + [19488] = 1, + ACTIONS(145), 1, + anon_sym_RPAREN, + [19492] = 1, + ACTIONS(75), 1, + anon_sym_RPAREN, + [19496] = 1, + ACTIONS(1581), 1, + anon_sym_RPAREN, + [19500] = 1, + ACTIONS(1583), 1, anon_sym_RPAREN, - [26260] = 1, - ACTIONS(1877), 1, + [19504] = 1, + ACTIONS(1585), 1, + anon_sym_RPAREN, + [19508] = 1, + ACTIONS(1587), 1, aux_sym_endwhile_command_token1, - [26264] = 1, - ACTIONS(1879), 1, + [19512] = 1, + ACTIONS(1589), 1, aux_sym_endwhile_command_token1, - [26268] = 1, - ACTIONS(1881), 1, + [19516] = 1, + ACTIONS(63), 1, + anon_sym_RPAREN, + [19520] = 1, + ACTIONS(1591), 1, anon_sym_RPAREN, - [26272] = 1, - ACTIONS(1883), 1, + [19524] = 1, + ACTIONS(440), 1, anon_sym_RPAREN, - [26276] = 1, - ACTIONS(1885), 1, - anon_sym_RBRACE, - [26280] = 1, - ACTIONS(1887), 1, - anon_sym_RBRACE, - [26284] = 1, - ACTIONS(872), 1, + [19528] = 1, + ACTIONS(1593), 1, + anon_sym_RPAREN, + [19532] = 1, + ACTIONS(1595), 1, + anon_sym_RPAREN, + [19536] = 1, + ACTIONS(626), 1, + aux_sym_endwhile_command_token1, + [19540] = 1, + ACTIONS(1597), 1, + anon_sym_RPAREN, + [19544] = 1, + ACTIONS(1599), 1, + anon_sym_RPAREN, + [19548] = 1, + ACTIONS(1601), 1, + anon_sym_RPAREN, + [19552] = 1, + ACTIONS(1603), 1, + anon_sym_RPAREN, + [19556] = 1, + ACTIONS(1605), 1, + anon_sym_RPAREN, + [19560] = 1, + ACTIONS(1607), 1, anon_sym_RPAREN, - [26288] = 1, - ACTIONS(1889), 1, + [19564] = 1, + ACTIONS(1609), 1, anon_sym_RBRACE, - [26292] = 1, - ACTIONS(1891), 1, + [19568] = 1, + ACTIONS(1611), 1, anon_sym_RBRACE, - [26296] = 1, - ACTIONS(1893), 1, + [19572] = 1, + ACTIONS(117), 1, anon_sym_RPAREN, - [26300] = 1, - ACTIONS(1895), 1, + [19576] = 1, + ACTIONS(115), 1, anon_sym_RPAREN, - [26304] = 1, - ACTIONS(864), 1, + [19580] = 1, + ACTIONS(109), 1, anon_sym_RPAREN, - [26308] = 1, - ACTIONS(860), 1, + [19584] = 1, + ACTIONS(1613), 1, anon_sym_RPAREN, - [26312] = 1, - ACTIONS(1897), 1, - anon_sym_DQUOTE, - [26316] = 1, - ACTIONS(1899), 1, + [19588] = 1, + ACTIONS(454), 1, anon_sym_RPAREN, - [26320] = 1, - ACTIONS(1901), 1, + [19592] = 1, + ACTIONS(1615), 1, anon_sym_RPAREN, - [26324] = 1, - ACTIONS(1903), 1, - anon_sym_RBRACE, - [26328] = 1, - ACTIONS(1905), 1, + [19596] = 1, + ACTIONS(1617), 1, anon_sym_GT, - [26332] = 1, - ACTIONS(1907), 1, - anon_sym_RPAREN, - [26336] = 1, - ACTIONS(1909), 1, + [19600] = 1, + ACTIONS(1619), 1, + anon_sym_RBRACE, + [19604] = 1, + ACTIONS(1621), 1, aux_sym_endwhile_command_token1, - [26340] = 1, - ACTIONS(1911), 1, + [19608] = 1, + ACTIONS(1623), 1, aux_sym_endwhile_command_token1, - [26344] = 1, - ACTIONS(1913), 1, + [19612] = 1, + ACTIONS(1625), 1, anon_sym_LBRACE, - [26348] = 1, - ACTIONS(1915), 1, + [19616] = 1, + ACTIONS(1627), 1, anon_sym_LBRACE, - [26352] = 1, - ACTIONS(1917), 1, - anon_sym_RBRACE, - [26356] = 1, - ACTIONS(1919), 1, - anon_sym_RBRACE, - [26360] = 1, - ACTIONS(1921), 1, + [19620] = 1, + ACTIONS(1629), 1, + anon_sym_RPAREN, + [19624] = 1, + ACTIONS(642), 1, + aux_sym_endwhile_command_token1, + [19628] = 1, + ACTIONS(1631), 1, anon_sym_LBRACE, - [26364] = 1, - ACTIONS(1923), 1, + [19632] = 1, + ACTIONS(1633), 1, anon_sym_LBRACE, - [26368] = 1, - ACTIONS(1925), 1, + [19636] = 1, + ACTIONS(87), 1, anon_sym_RPAREN, - [26372] = 1, - ACTIONS(1927), 1, + [19640] = 1, + ACTIONS(1635), 1, anon_sym_RPAREN, - [26376] = 1, - ACTIONS(1929), 1, + [19644] = 1, + ACTIONS(1637), 1, anon_sym_LBRACE, - [26380] = 1, - ACTIONS(1931), 1, + [19648] = 1, + ACTIONS(1639), 1, anon_sym_LBRACE, - [26384] = 1, - ACTIONS(1933), 1, - aux_sym_endwhile_command_token1, - [26388] = 1, - ACTIONS(1935), 1, + [19652] = 1, + ACTIONS(1641), 1, + anon_sym_DQUOTE, + [19656] = 1, + ACTIONS(1643), 1, ts_builtin_sym_end, - [26392] = 1, - ACTIONS(1937), 1, + [19660] = 1, + ACTIONS(1645), 1, anon_sym_LBRACE, - [26396] = 1, - ACTIONS(1939), 1, + [19664] = 1, + ACTIONS(1647), 1, anon_sym_LBRACE, - [26400] = 1, - ACTIONS(1941), 1, - aux_sym_endwhile_command_token1, - [26404] = 1, - ACTIONS(874), 1, + [19668] = 1, + ACTIONS(79), 1, anon_sym_RPAREN, - [26408] = 1, - ACTIONS(1943), 1, - anon_sym_LBRACE, - [26412] = 1, - ACTIONS(1945), 1, - anon_sym_LBRACE, - [26416] = 1, - ACTIONS(1947), 1, + [19672] = 1, + ACTIONS(622), 1, aux_sym_endwhile_command_token1, - [26420] = 1, - ACTIONS(1949), 1, - anon_sym_RBRACE, - [26424] = 1, - ACTIONS(1951), 1, + [19676] = 1, + ACTIONS(1649), 1, anon_sym_LBRACE, - [26428] = 1, - ACTIONS(1953), 1, + [19680] = 1, + ACTIONS(1651), 1, anon_sym_LBRACE, - [26432] = 1, - ACTIONS(1955), 1, - anon_sym_GT, - [26436] = 1, - ACTIONS(1957), 1, + [19684] = 1, + ACTIONS(1653), 1, anon_sym_RPAREN, + [19688] = 1, + ACTIONS(1655), 1, + anon_sym_RPAREN, + [19692] = 1, + ACTIONS(1657), 1, + anon_sym_LBRACE, + [19696] = 1, + ACTIONS(1659), 1, + anon_sym_LBRACE, + [19700] = 1, + ACTIONS(1661), 1, + anon_sym_RBRACE, + [19704] = 1, + ACTIONS(1663), 1, + anon_sym_RBRACE, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2)] = 0, - [SMALL_STATE(3)] = 59, - [SMALL_STATE(4)] = 118, - [SMALL_STATE(5)] = 177, - [SMALL_STATE(6)] = 236, - [SMALL_STATE(7)] = 295, - [SMALL_STATE(8)] = 354, - [SMALL_STATE(9)] = 413, - [SMALL_STATE(10)] = 472, - [SMALL_STATE(11)] = 543, - [SMALL_STATE(12)] = 602, - [SMALL_STATE(13)] = 661, - [SMALL_STATE(14)] = 720, - [SMALL_STATE(15)] = 779, - [SMALL_STATE(16)] = 838, - [SMALL_STATE(17)] = 897, - [SMALL_STATE(18)] = 956, - [SMALL_STATE(19)] = 1015, - [SMALL_STATE(20)] = 1074, - [SMALL_STATE(21)] = 1133, - [SMALL_STATE(22)] = 1192, - [SMALL_STATE(23)] = 1251, - [SMALL_STATE(24)] = 1310, - [SMALL_STATE(25)] = 1381, - [SMALL_STATE(26)] = 1440, - [SMALL_STATE(27)] = 1499, - [SMALL_STATE(28)] = 1558, - [SMALL_STATE(29)] = 1617, - [SMALL_STATE(30)] = 1676, - [SMALL_STATE(31)] = 1735, - [SMALL_STATE(32)] = 1794, - [SMALL_STATE(33)] = 1853, - [SMALL_STATE(34)] = 1912, - [SMALL_STATE(35)] = 1983, - [SMALL_STATE(36)] = 2054, - [SMALL_STATE(37)] = 2113, - [SMALL_STATE(38)] = 2184, - [SMALL_STATE(39)] = 2243, - [SMALL_STATE(40)] = 2302, - [SMALL_STATE(41)] = 2361, - [SMALL_STATE(42)] = 2420, - [SMALL_STATE(43)] = 2491, - [SMALL_STATE(44)] = 2550, - [SMALL_STATE(45)] = 2609, - [SMALL_STATE(46)] = 2668, - [SMALL_STATE(47)] = 2727, - [SMALL_STATE(48)] = 2786, - [SMALL_STATE(49)] = 2845, - [SMALL_STATE(50)] = 2904, - [SMALL_STATE(51)] = 2963, - [SMALL_STATE(52)] = 3022, - [SMALL_STATE(53)] = 3093, - [SMALL_STATE(54)] = 3164, - [SMALL_STATE(55)] = 3223, - [SMALL_STATE(56)] = 3282, - [SMALL_STATE(57)] = 3341, - [SMALL_STATE(58)] = 3400, - [SMALL_STATE(59)] = 3459, - [SMALL_STATE(60)] = 3518, - [SMALL_STATE(61)] = 3577, - [SMALL_STATE(62)] = 3636, - [SMALL_STATE(63)] = 3695, - [SMALL_STATE(64)] = 3754, - [SMALL_STATE(65)] = 3813, - [SMALL_STATE(66)] = 3872, - [SMALL_STATE(67)] = 3931, - [SMALL_STATE(68)] = 3990, - [SMALL_STATE(69)] = 4049, - [SMALL_STATE(70)] = 4108, - [SMALL_STATE(71)] = 4167, - [SMALL_STATE(72)] = 4226, - [SMALL_STATE(73)] = 4285, - [SMALL_STATE(74)] = 4344, - [SMALL_STATE(75)] = 4403, - [SMALL_STATE(76)] = 4462, - [SMALL_STATE(77)] = 4521, - [SMALL_STATE(78)] = 4580, - [SMALL_STATE(79)] = 4639, - [SMALL_STATE(80)] = 4698, - [SMALL_STATE(81)] = 4757, - [SMALL_STATE(82)] = 4816, - [SMALL_STATE(83)] = 4875, - [SMALL_STATE(84)] = 4934, - [SMALL_STATE(85)] = 4993, - [SMALL_STATE(86)] = 5052, - [SMALL_STATE(87)] = 5111, - [SMALL_STATE(88)] = 5170, - [SMALL_STATE(89)] = 5229, - [SMALL_STATE(90)] = 5288, - [SMALL_STATE(91)] = 5347, - [SMALL_STATE(92)] = 5406, - [SMALL_STATE(93)] = 5465, - [SMALL_STATE(94)] = 5524, - [SMALL_STATE(95)] = 5583, - [SMALL_STATE(96)] = 5642, - [SMALL_STATE(97)] = 5701, - [SMALL_STATE(98)] = 5760, - [SMALL_STATE(99)] = 5819, - [SMALL_STATE(100)] = 5878, - [SMALL_STATE(101)] = 5937, - [SMALL_STATE(102)] = 5996, - [SMALL_STATE(103)] = 6055, - [SMALL_STATE(104)] = 6114, - [SMALL_STATE(105)] = 6173, - [SMALL_STATE(106)] = 6232, - [SMALL_STATE(107)] = 6291, - [SMALL_STATE(108)] = 6350, - [SMALL_STATE(109)] = 6409, - [SMALL_STATE(110)] = 6468, - [SMALL_STATE(111)] = 6527, - [SMALL_STATE(112)] = 6586, - [SMALL_STATE(113)] = 6645, - [SMALL_STATE(114)] = 6704, - [SMALL_STATE(115)] = 6763, - [SMALL_STATE(116)] = 6822, - [SMALL_STATE(117)] = 6881, - [SMALL_STATE(118)] = 6940, - [SMALL_STATE(119)] = 6999, - [SMALL_STATE(120)] = 7058, - [SMALL_STATE(121)] = 7117, - [SMALL_STATE(122)] = 7176, - [SMALL_STATE(123)] = 7235, - [SMALL_STATE(124)] = 7294, - [SMALL_STATE(125)] = 7353, - [SMALL_STATE(126)] = 7412, - [SMALL_STATE(127)] = 7471, - [SMALL_STATE(128)] = 7542, - [SMALL_STATE(129)] = 7601, - [SMALL_STATE(130)] = 7672, - [SMALL_STATE(131)] = 7731, - [SMALL_STATE(132)] = 7790, - [SMALL_STATE(133)] = 7849, - [SMALL_STATE(134)] = 7908, - [SMALL_STATE(135)] = 7967, - [SMALL_STATE(136)] = 8026, - [SMALL_STATE(137)] = 8085, - [SMALL_STATE(138)] = 8156, - [SMALL_STATE(139)] = 8215, - [SMALL_STATE(140)] = 8274, - [SMALL_STATE(141)] = 8333, - [SMALL_STATE(142)] = 8392, - [SMALL_STATE(143)] = 8451, - [SMALL_STATE(144)] = 8522, - [SMALL_STATE(145)] = 8581, - [SMALL_STATE(146)] = 8640, - [SMALL_STATE(147)] = 8699, - [SMALL_STATE(148)] = 8758, - [SMALL_STATE(149)] = 8817, - [SMALL_STATE(150)] = 8876, - [SMALL_STATE(151)] = 8935, - [SMALL_STATE(152)] = 8994, - [SMALL_STATE(153)] = 9053, - [SMALL_STATE(154)] = 9112, - [SMALL_STATE(155)] = 9171, - [SMALL_STATE(156)] = 9230, - [SMALL_STATE(157)] = 9289, - [SMALL_STATE(158)] = 9348, - [SMALL_STATE(159)] = 9407, - [SMALL_STATE(160)] = 9466, - [SMALL_STATE(161)] = 9525, - [SMALL_STATE(162)] = 9584, - [SMALL_STATE(163)] = 9643, - [SMALL_STATE(164)] = 9702, - [SMALL_STATE(165)] = 9761, - [SMALL_STATE(166)] = 9820, - [SMALL_STATE(167)] = 9879, - [SMALL_STATE(168)] = 9938, - [SMALL_STATE(169)] = 9997, - [SMALL_STATE(170)] = 10056, - [SMALL_STATE(171)] = 10127, - [SMALL_STATE(172)] = 10186, - [SMALL_STATE(173)] = 10245, - [SMALL_STATE(174)] = 10304, - [SMALL_STATE(175)] = 10363, - [SMALL_STATE(176)] = 10422, - [SMALL_STATE(177)] = 10481, - [SMALL_STATE(178)] = 10540, - [SMALL_STATE(179)] = 10599, - [SMALL_STATE(180)] = 10658, - [SMALL_STATE(181)] = 10717, - [SMALL_STATE(182)] = 10776, - [SMALL_STATE(183)] = 10835, - [SMALL_STATE(184)] = 10894, - [SMALL_STATE(185)] = 10965, - [SMALL_STATE(186)] = 11024, - [SMALL_STATE(187)] = 11083, - [SMALL_STATE(188)] = 11142, - [SMALL_STATE(189)] = 11201, - [SMALL_STATE(190)] = 11260, - [SMALL_STATE(191)] = 11319, - [SMALL_STATE(192)] = 11387, - [SMALL_STATE(193)] = 11450, - [SMALL_STATE(194)] = 11513, - [SMALL_STATE(195)] = 11576, - [SMALL_STATE(196)] = 11639, - [SMALL_STATE(197)] = 11702, - [SMALL_STATE(198)] = 11765, - [SMALL_STATE(199)] = 11828, - [SMALL_STATE(200)] = 11891, - [SMALL_STATE(201)] = 11954, - [SMALL_STATE(202)] = 12017, - [SMALL_STATE(203)] = 12080, - [SMALL_STATE(204)] = 12143, - [SMALL_STATE(205)] = 12206, - [SMALL_STATE(206)] = 12269, - [SMALL_STATE(207)] = 12332, - [SMALL_STATE(208)] = 12395, - [SMALL_STATE(209)] = 12458, - [SMALL_STATE(210)] = 12521, - [SMALL_STATE(211)] = 12584, - [SMALL_STATE(212)] = 12647, - [SMALL_STATE(213)] = 12710, - [SMALL_STATE(214)] = 12773, - [SMALL_STATE(215)] = 12836, - [SMALL_STATE(216)] = 12899, - [SMALL_STATE(217)] = 12962, - [SMALL_STATE(218)] = 13025, - [SMALL_STATE(219)] = 13088, - [SMALL_STATE(220)] = 13151, - [SMALL_STATE(221)] = 13214, - [SMALL_STATE(222)] = 13277, - [SMALL_STATE(223)] = 13340, - [SMALL_STATE(224)] = 13403, - [SMALL_STATE(225)] = 13466, - [SMALL_STATE(226)] = 13529, - [SMALL_STATE(227)] = 13592, - [SMALL_STATE(228)] = 13655, - [SMALL_STATE(229)] = 13718, - [SMALL_STATE(230)] = 13781, - [SMALL_STATE(231)] = 13844, - [SMALL_STATE(232)] = 13907, - [SMALL_STATE(233)] = 13970, - [SMALL_STATE(234)] = 14033, - [SMALL_STATE(235)] = 14096, - [SMALL_STATE(236)] = 14159, - [SMALL_STATE(237)] = 14222, - [SMALL_STATE(238)] = 14285, - [SMALL_STATE(239)] = 14348, - [SMALL_STATE(240)] = 14411, - [SMALL_STATE(241)] = 14474, - [SMALL_STATE(242)] = 14537, - [SMALL_STATE(243)] = 14600, - [SMALL_STATE(244)] = 14663, - [SMALL_STATE(245)] = 14726, - [SMALL_STATE(246)] = 14789, - [SMALL_STATE(247)] = 14852, - [SMALL_STATE(248)] = 14915, - [SMALL_STATE(249)] = 14978, - [SMALL_STATE(250)] = 15041, - [SMALL_STATE(251)] = 15104, - [SMALL_STATE(252)] = 15167, - [SMALL_STATE(253)] = 15230, - [SMALL_STATE(254)] = 15293, - [SMALL_STATE(255)] = 15356, - [SMALL_STATE(256)] = 15419, - [SMALL_STATE(257)] = 15482, - [SMALL_STATE(258)] = 15545, - [SMALL_STATE(259)] = 15608, - [SMALL_STATE(260)] = 15671, - [SMALL_STATE(261)] = 15734, - [SMALL_STATE(262)] = 15797, - [SMALL_STATE(263)] = 15857, - [SMALL_STATE(264)] = 15917, - [SMALL_STATE(265)] = 15977, - [SMALL_STATE(266)] = 16037, - [SMALL_STATE(267)] = 16097, - [SMALL_STATE(268)] = 16157, - [SMALL_STATE(269)] = 16217, - [SMALL_STATE(270)] = 16268, - [SMALL_STATE(271)] = 16319, - [SMALL_STATE(272)] = 16370, - [SMALL_STATE(273)] = 16421, - [SMALL_STATE(274)] = 16462, - [SMALL_STATE(275)] = 16513, - [SMALL_STATE(276)] = 16564, - [SMALL_STATE(277)] = 16615, - [SMALL_STATE(278)] = 16666, - [SMALL_STATE(279)] = 16717, - [SMALL_STATE(280)] = 16758, - [SMALL_STATE(281)] = 16806, - [SMALL_STATE(282)] = 16854, - [SMALL_STATE(283)] = 16902, - [SMALL_STATE(284)] = 16950, - [SMALL_STATE(285)] = 16998, - [SMALL_STATE(286)] = 17046, - [SMALL_STATE(287)] = 17094, - [SMALL_STATE(288)] = 17142, - [SMALL_STATE(289)] = 17190, - [SMALL_STATE(290)] = 17238, - [SMALL_STATE(291)] = 17286, - [SMALL_STATE(292)] = 17334, - [SMALL_STATE(293)] = 17382, - [SMALL_STATE(294)] = 17430, - [SMALL_STATE(295)] = 17475, - [SMALL_STATE(296)] = 17520, - [SMALL_STATE(297)] = 17565, - [SMALL_STATE(298)] = 17610, - [SMALL_STATE(299)] = 17655, - [SMALL_STATE(300)] = 17700, - [SMALL_STATE(301)] = 17745, - [SMALL_STATE(302)] = 17790, - [SMALL_STATE(303)] = 17835, - [SMALL_STATE(304)] = 17880, - [SMALL_STATE(305)] = 17925, - [SMALL_STATE(306)] = 17970, - [SMALL_STATE(307)] = 18015, - [SMALL_STATE(308)] = 18060, - [SMALL_STATE(309)] = 18100, - [SMALL_STATE(310)] = 18140, - [SMALL_STATE(311)] = 18178, - [SMALL_STATE(312)] = 18214, - [SMALL_STATE(313)] = 18252, - [SMALL_STATE(314)] = 18290, - [SMALL_STATE(315)] = 18328, - [SMALL_STATE(316)] = 18364, - [SMALL_STATE(317)] = 18399, - [SMALL_STATE(318)] = 18434, - [SMALL_STATE(319)] = 18469, - [SMALL_STATE(320)] = 18504, - [SMALL_STATE(321)] = 18539, - [SMALL_STATE(322)] = 18574, - [SMALL_STATE(323)] = 18606, - [SMALL_STATE(324)] = 18638, - [SMALL_STATE(325)] = 18670, - [SMALL_STATE(326)] = 18702, - [SMALL_STATE(327)] = 18734, - [SMALL_STATE(328)] = 18766, - [SMALL_STATE(329)] = 18798, - [SMALL_STATE(330)] = 18830, - [SMALL_STATE(331)] = 18862, - [SMALL_STATE(332)] = 18894, - [SMALL_STATE(333)] = 18926, - [SMALL_STATE(334)] = 18958, - [SMALL_STATE(335)] = 18990, - [SMALL_STATE(336)] = 19022, - [SMALL_STATE(337)] = 19054, - [SMALL_STATE(338)] = 19086, - [SMALL_STATE(339)] = 19118, - [SMALL_STATE(340)] = 19150, - [SMALL_STATE(341)] = 19182, - [SMALL_STATE(342)] = 19214, - [SMALL_STATE(343)] = 19246, - [SMALL_STATE(344)] = 19278, - [SMALL_STATE(345)] = 19310, - [SMALL_STATE(346)] = 19342, - [SMALL_STATE(347)] = 19367, - [SMALL_STATE(348)] = 19396, - [SMALL_STATE(349)] = 19416, - [SMALL_STATE(350)] = 19436, - [SMALL_STATE(351)] = 19456, - [SMALL_STATE(352)] = 19476, - [SMALL_STATE(353)] = 19496, - [SMALL_STATE(354)] = 19516, - [SMALL_STATE(355)] = 19536, - [SMALL_STATE(356)] = 19556, - [SMALL_STATE(357)] = 19576, - [SMALL_STATE(358)] = 19596, - [SMALL_STATE(359)] = 19616, - [SMALL_STATE(360)] = 19636, - [SMALL_STATE(361)] = 19663, - [SMALL_STATE(362)] = 19681, - [SMALL_STATE(363)] = 19699, - [SMALL_STATE(364)] = 19717, - [SMALL_STATE(365)] = 19735, - [SMALL_STATE(366)] = 19753, - [SMALL_STATE(367)] = 19771, - [SMALL_STATE(368)] = 19789, - [SMALL_STATE(369)] = 19807, - [SMALL_STATE(370)] = 19825, - [SMALL_STATE(371)] = 19843, - [SMALL_STATE(372)] = 19861, - [SMALL_STATE(373)] = 19879, - [SMALL_STATE(374)] = 19897, - [SMALL_STATE(375)] = 19923, - [SMALL_STATE(376)] = 19941, - [SMALL_STATE(377)] = 19959, - [SMALL_STATE(378)] = 19977, - [SMALL_STATE(379)] = 19995, - [SMALL_STATE(380)] = 20021, - [SMALL_STATE(381)] = 20039, - [SMALL_STATE(382)] = 20057, - [SMALL_STATE(383)] = 20075, - [SMALL_STATE(384)] = 20099, - [SMALL_STATE(385)] = 20117, - [SMALL_STATE(386)] = 20135, - [SMALL_STATE(387)] = 20153, - [SMALL_STATE(388)] = 20171, - [SMALL_STATE(389)] = 20189, - [SMALL_STATE(390)] = 20207, - [SMALL_STATE(391)] = 20225, - [SMALL_STATE(392)] = 20251, - [SMALL_STATE(393)] = 20269, - [SMALL_STATE(394)] = 20287, - [SMALL_STATE(395)] = 20305, - [SMALL_STATE(396)] = 20323, - [SMALL_STATE(397)] = 20341, - [SMALL_STATE(398)] = 20359, - [SMALL_STATE(399)] = 20377, - [SMALL_STATE(400)] = 20395, - [SMALL_STATE(401)] = 20413, - [SMALL_STATE(402)] = 20431, - [SMALL_STATE(403)] = 20449, - [SMALL_STATE(404)] = 20467, - [SMALL_STATE(405)] = 20485, - [SMALL_STATE(406)] = 20503, - [SMALL_STATE(407)] = 20521, - [SMALL_STATE(408)] = 20539, - [SMALL_STATE(409)] = 20556, - [SMALL_STATE(410)] = 20573, - [SMALL_STATE(411)] = 20590, - [SMALL_STATE(412)] = 20609, - [SMALL_STATE(413)] = 20626, - [SMALL_STATE(414)] = 20643, - [SMALL_STATE(415)] = 20660, - [SMALL_STATE(416)] = 20677, - [SMALL_STATE(417)] = 20694, - [SMALL_STATE(418)] = 20711, - [SMALL_STATE(419)] = 20728, - [SMALL_STATE(420)] = 20744, - [SMALL_STATE(421)] = 20760, - [SMALL_STATE(422)] = 20776, - [SMALL_STATE(423)] = 20792, - [SMALL_STATE(424)] = 20808, - [SMALL_STATE(425)] = 20824, - [SMALL_STATE(426)] = 20840, - [SMALL_STATE(427)] = 20856, - [SMALL_STATE(428)] = 20872, - [SMALL_STATE(429)] = 20888, - [SMALL_STATE(430)] = 20904, - [SMALL_STATE(431)] = 20920, - [SMALL_STATE(432)] = 20936, - [SMALL_STATE(433)] = 20952, - [SMALL_STATE(434)] = 20968, - [SMALL_STATE(435)] = 20984, - [SMALL_STATE(436)] = 21000, - [SMALL_STATE(437)] = 21016, - [SMALL_STATE(438)] = 21032, - [SMALL_STATE(439)] = 21048, - [SMALL_STATE(440)] = 21064, - [SMALL_STATE(441)] = 21080, - [SMALL_STATE(442)] = 21096, - [SMALL_STATE(443)] = 21112, - [SMALL_STATE(444)] = 21128, - [SMALL_STATE(445)] = 21144, - [SMALL_STATE(446)] = 21160, - [SMALL_STATE(447)] = 21176, - [SMALL_STATE(448)] = 21192, - [SMALL_STATE(449)] = 21208, - [SMALL_STATE(450)] = 21224, - [SMALL_STATE(451)] = 21240, - [SMALL_STATE(452)] = 21256, - [SMALL_STATE(453)] = 21272, - [SMALL_STATE(454)] = 21288, - [SMALL_STATE(455)] = 21304, - [SMALL_STATE(456)] = 21320, - [SMALL_STATE(457)] = 21336, - [SMALL_STATE(458)] = 21352, - [SMALL_STATE(459)] = 21368, - [SMALL_STATE(460)] = 21384, - [SMALL_STATE(461)] = 21400, - [SMALL_STATE(462)] = 21416, - [SMALL_STATE(463)] = 21432, - [SMALL_STATE(464)] = 21448, - [SMALL_STATE(465)] = 21464, - [SMALL_STATE(466)] = 21480, - [SMALL_STATE(467)] = 21496, - [SMALL_STATE(468)] = 21512, - [SMALL_STATE(469)] = 21528, - [SMALL_STATE(470)] = 21544, - [SMALL_STATE(471)] = 21560, - [SMALL_STATE(472)] = 21576, - [SMALL_STATE(473)] = 21592, - [SMALL_STATE(474)] = 21608, - [SMALL_STATE(475)] = 21624, - [SMALL_STATE(476)] = 21640, - [SMALL_STATE(477)] = 21656, - [SMALL_STATE(478)] = 21672, - [SMALL_STATE(479)] = 21688, - [SMALL_STATE(480)] = 21704, - [SMALL_STATE(481)] = 21720, - [SMALL_STATE(482)] = 21736, - [SMALL_STATE(483)] = 21752, - [SMALL_STATE(484)] = 21768, - [SMALL_STATE(485)] = 21784, - [SMALL_STATE(486)] = 21800, - [SMALL_STATE(487)] = 21816, - [SMALL_STATE(488)] = 21832, - [SMALL_STATE(489)] = 21848, - [SMALL_STATE(490)] = 21864, - [SMALL_STATE(491)] = 21880, - [SMALL_STATE(492)] = 21896, - [SMALL_STATE(493)] = 21912, - [SMALL_STATE(494)] = 21928, - [SMALL_STATE(495)] = 21944, - [SMALL_STATE(496)] = 21960, - [SMALL_STATE(497)] = 21976, - [SMALL_STATE(498)] = 21996, - [SMALL_STATE(499)] = 22012, - [SMALL_STATE(500)] = 22028, - [SMALL_STATE(501)] = 22044, - [SMALL_STATE(502)] = 22060, - [SMALL_STATE(503)] = 22076, - [SMALL_STATE(504)] = 22092, - [SMALL_STATE(505)] = 22108, - [SMALL_STATE(506)] = 22124, - [SMALL_STATE(507)] = 22140, - [SMALL_STATE(508)] = 22156, - [SMALL_STATE(509)] = 22172, - [SMALL_STATE(510)] = 22188, - [SMALL_STATE(511)] = 22204, - [SMALL_STATE(512)] = 22220, - [SMALL_STATE(513)] = 22236, - [SMALL_STATE(514)] = 22252, - [SMALL_STATE(515)] = 22268, - [SMALL_STATE(516)] = 22284, - [SMALL_STATE(517)] = 22300, - [SMALL_STATE(518)] = 22316, - [SMALL_STATE(519)] = 22332, - [SMALL_STATE(520)] = 22348, - [SMALL_STATE(521)] = 22364, - [SMALL_STATE(522)] = 22380, - [SMALL_STATE(523)] = 22396, - [SMALL_STATE(524)] = 22412, - [SMALL_STATE(525)] = 22428, - [SMALL_STATE(526)] = 22444, - [SMALL_STATE(527)] = 22460, - [SMALL_STATE(528)] = 22476, - [SMALL_STATE(529)] = 22492, - [SMALL_STATE(530)] = 22508, - [SMALL_STATE(531)] = 22524, - [SMALL_STATE(532)] = 22540, - [SMALL_STATE(533)] = 22556, - [SMALL_STATE(534)] = 22572, - [SMALL_STATE(535)] = 22588, - [SMALL_STATE(536)] = 22604, - [SMALL_STATE(537)] = 22620, - [SMALL_STATE(538)] = 22636, - [SMALL_STATE(539)] = 22652, - [SMALL_STATE(540)] = 22668, - [SMALL_STATE(541)] = 22684, - [SMALL_STATE(542)] = 22700, - [SMALL_STATE(543)] = 22716, - [SMALL_STATE(544)] = 22732, - [SMALL_STATE(545)] = 22748, - [SMALL_STATE(546)] = 22764, - [SMALL_STATE(547)] = 22780, - [SMALL_STATE(548)] = 22796, - [SMALL_STATE(549)] = 22812, - [SMALL_STATE(550)] = 22828, - [SMALL_STATE(551)] = 22844, - [SMALL_STATE(552)] = 22860, - [SMALL_STATE(553)] = 22876, - [SMALL_STATE(554)] = 22892, - [SMALL_STATE(555)] = 22908, - [SMALL_STATE(556)] = 22924, - [SMALL_STATE(557)] = 22940, - [SMALL_STATE(558)] = 22956, - [SMALL_STATE(559)] = 22972, - [SMALL_STATE(560)] = 22988, - [SMALL_STATE(561)] = 23004, - [SMALL_STATE(562)] = 23020, - [SMALL_STATE(563)] = 23036, - [SMALL_STATE(564)] = 23052, - [SMALL_STATE(565)] = 23068, - [SMALL_STATE(566)] = 23084, - [SMALL_STATE(567)] = 23100, - [SMALL_STATE(568)] = 23116, - [SMALL_STATE(569)] = 23132, - [SMALL_STATE(570)] = 23148, - [SMALL_STATE(571)] = 23164, - [SMALL_STATE(572)] = 23180, - [SMALL_STATE(573)] = 23196, - [SMALL_STATE(574)] = 23212, - [SMALL_STATE(575)] = 23228, - [SMALL_STATE(576)] = 23244, - [SMALL_STATE(577)] = 23260, - [SMALL_STATE(578)] = 23276, - [SMALL_STATE(579)] = 23292, - [SMALL_STATE(580)] = 23308, - [SMALL_STATE(581)] = 23324, - [SMALL_STATE(582)] = 23340, - [SMALL_STATE(583)] = 23356, - [SMALL_STATE(584)] = 23372, - [SMALL_STATE(585)] = 23388, - [SMALL_STATE(586)] = 23404, - [SMALL_STATE(587)] = 23420, - [SMALL_STATE(588)] = 23436, - [SMALL_STATE(589)] = 23452, - [SMALL_STATE(590)] = 23468, - [SMALL_STATE(591)] = 23484, - [SMALL_STATE(592)] = 23500, - [SMALL_STATE(593)] = 23516, - [SMALL_STATE(594)] = 23532, - [SMALL_STATE(595)] = 23548, - [SMALL_STATE(596)] = 23564, - [SMALL_STATE(597)] = 23580, - [SMALL_STATE(598)] = 23596, - [SMALL_STATE(599)] = 23612, - [SMALL_STATE(600)] = 23628, - [SMALL_STATE(601)] = 23644, - [SMALL_STATE(602)] = 23660, - [SMALL_STATE(603)] = 23676, - [SMALL_STATE(604)] = 23692, - [SMALL_STATE(605)] = 23708, - [SMALL_STATE(606)] = 23724, - [SMALL_STATE(607)] = 23740, - [SMALL_STATE(608)] = 23756, - [SMALL_STATE(609)] = 23772, - [SMALL_STATE(610)] = 23788, - [SMALL_STATE(611)] = 23804, - [SMALL_STATE(612)] = 23820, - [SMALL_STATE(613)] = 23836, - [SMALL_STATE(614)] = 23852, - [SMALL_STATE(615)] = 23868, - [SMALL_STATE(616)] = 23884, - [SMALL_STATE(617)] = 23900, - [SMALL_STATE(618)] = 23916, - [SMALL_STATE(619)] = 23932, - [SMALL_STATE(620)] = 23948, - [SMALL_STATE(621)] = 23964, - [SMALL_STATE(622)] = 23980, - [SMALL_STATE(623)] = 23996, - [SMALL_STATE(624)] = 24012, - [SMALL_STATE(625)] = 24028, - [SMALL_STATE(626)] = 24044, - [SMALL_STATE(627)] = 24060, - [SMALL_STATE(628)] = 24076, - [SMALL_STATE(629)] = 24092, - [SMALL_STATE(630)] = 24108, - [SMALL_STATE(631)] = 24124, - [SMALL_STATE(632)] = 24140, - [SMALL_STATE(633)] = 24156, - [SMALL_STATE(634)] = 24172, - [SMALL_STATE(635)] = 24188, - [SMALL_STATE(636)] = 24204, - [SMALL_STATE(637)] = 24220, - [SMALL_STATE(638)] = 24236, - [SMALL_STATE(639)] = 24252, - [SMALL_STATE(640)] = 24268, - [SMALL_STATE(641)] = 24289, - [SMALL_STATE(642)] = 24304, - [SMALL_STATE(643)] = 24319, - [SMALL_STATE(644)] = 24338, - [SMALL_STATE(645)] = 24353, - [SMALL_STATE(646)] = 24368, - [SMALL_STATE(647)] = 24387, - [SMALL_STATE(648)] = 24402, - [SMALL_STATE(649)] = 24417, - [SMALL_STATE(650)] = 24432, - [SMALL_STATE(651)] = 24446, - [SMALL_STATE(652)] = 24460, - [SMALL_STATE(653)] = 24474, - [SMALL_STATE(654)] = 24488, - [SMALL_STATE(655)] = 24502, - [SMALL_STATE(656)] = 24516, - [SMALL_STATE(657)] = 24530, - [SMALL_STATE(658)] = 24544, - [SMALL_STATE(659)] = 24558, - [SMALL_STATE(660)] = 24572, - [SMALL_STATE(661)] = 24586, - [SMALL_STATE(662)] = 24600, - [SMALL_STATE(663)] = 24614, - [SMALL_STATE(664)] = 24628, - [SMALL_STATE(665)] = 24640, - [SMALL_STATE(666)] = 24652, - [SMALL_STATE(667)] = 24664, - [SMALL_STATE(668)] = 24676, - [SMALL_STATE(669)] = 24688, - [SMALL_STATE(670)] = 24702, - [SMALL_STATE(671)] = 24716, - [SMALL_STATE(672)] = 24730, - [SMALL_STATE(673)] = 24744, - [SMALL_STATE(674)] = 24758, - [SMALL_STATE(675)] = 24772, - [SMALL_STATE(676)] = 24786, - [SMALL_STATE(677)] = 24796, - [SMALL_STATE(678)] = 24806, - [SMALL_STATE(679)] = 24816, - [SMALL_STATE(680)] = 24826, - [SMALL_STATE(681)] = 24836, - [SMALL_STATE(682)] = 24846, - [SMALL_STATE(683)] = 24856, - [SMALL_STATE(684)] = 24866, - [SMALL_STATE(685)] = 24876, - [SMALL_STATE(686)] = 24886, - [SMALL_STATE(687)] = 24896, - [SMALL_STATE(688)] = 24906, - [SMALL_STATE(689)] = 24916, - [SMALL_STATE(690)] = 24926, - [SMALL_STATE(691)] = 24936, - [SMALL_STATE(692)] = 24946, - [SMALL_STATE(693)] = 24956, - [SMALL_STATE(694)] = 24966, - [SMALL_STATE(695)] = 24976, - [SMALL_STATE(696)] = 24986, - [SMALL_STATE(697)] = 24996, - [SMALL_STATE(698)] = 25006, - [SMALL_STATE(699)] = 25016, - [SMALL_STATE(700)] = 25026, - [SMALL_STATE(701)] = 25036, - [SMALL_STATE(702)] = 25046, - [SMALL_STATE(703)] = 25056, - [SMALL_STATE(704)] = 25066, - [SMALL_STATE(705)] = 25076, - [SMALL_STATE(706)] = 25086, - [SMALL_STATE(707)] = 25096, - [SMALL_STATE(708)] = 25106, - [SMALL_STATE(709)] = 25116, - [SMALL_STATE(710)] = 25126, - [SMALL_STATE(711)] = 25136, - [SMALL_STATE(712)] = 25146, - [SMALL_STATE(713)] = 25156, - [SMALL_STATE(714)] = 25166, - [SMALL_STATE(715)] = 25176, - [SMALL_STATE(716)] = 25186, - [SMALL_STATE(717)] = 25196, - [SMALL_STATE(718)] = 25206, - [SMALL_STATE(719)] = 25216, - [SMALL_STATE(720)] = 25226, - [SMALL_STATE(721)] = 25236, - [SMALL_STATE(722)] = 25246, - [SMALL_STATE(723)] = 25256, - [SMALL_STATE(724)] = 25266, - [SMALL_STATE(725)] = 25276, - [SMALL_STATE(726)] = 25286, - [SMALL_STATE(727)] = 25296, - [SMALL_STATE(728)] = 25306, - [SMALL_STATE(729)] = 25316, - [SMALL_STATE(730)] = 25326, - [SMALL_STATE(731)] = 25336, - [SMALL_STATE(732)] = 25342, - [SMALL_STATE(733)] = 25352, - [SMALL_STATE(734)] = 25358, - [SMALL_STATE(735)] = 25368, - [SMALL_STATE(736)] = 25374, - [SMALL_STATE(737)] = 25384, - [SMALL_STATE(738)] = 25394, - [SMALL_STATE(739)] = 25404, - [SMALL_STATE(740)] = 25414, - [SMALL_STATE(741)] = 25424, - [SMALL_STATE(742)] = 25434, - [SMALL_STATE(743)] = 25444, - [SMALL_STATE(744)] = 25454, - [SMALL_STATE(745)] = 25464, - [SMALL_STATE(746)] = 25474, - [SMALL_STATE(747)] = 25484, - [SMALL_STATE(748)] = 25494, - [SMALL_STATE(749)] = 25504, - [SMALL_STATE(750)] = 25514, - [SMALL_STATE(751)] = 25524, - [SMALL_STATE(752)] = 25534, - [SMALL_STATE(753)] = 25544, - [SMALL_STATE(754)] = 25554, - [SMALL_STATE(755)] = 25564, - [SMALL_STATE(756)] = 25574, - [SMALL_STATE(757)] = 25584, - [SMALL_STATE(758)] = 25594, - [SMALL_STATE(759)] = 25604, - [SMALL_STATE(760)] = 25614, - [SMALL_STATE(761)] = 25624, - [SMALL_STATE(762)] = 25634, - [SMALL_STATE(763)] = 25644, - [SMALL_STATE(764)] = 25654, - [SMALL_STATE(765)] = 25664, - [SMALL_STATE(766)] = 25674, - [SMALL_STATE(767)] = 25684, - [SMALL_STATE(768)] = 25694, - [SMALL_STATE(769)] = 25704, - [SMALL_STATE(770)] = 25714, - [SMALL_STATE(771)] = 25724, - [SMALL_STATE(772)] = 25734, - [SMALL_STATE(773)] = 25744, - [SMALL_STATE(774)] = 25754, - [SMALL_STATE(775)] = 25764, - [SMALL_STATE(776)] = 25774, - [SMALL_STATE(777)] = 25784, - [SMALL_STATE(778)] = 25794, - [SMALL_STATE(779)] = 25804, - [SMALL_STATE(780)] = 25814, - [SMALL_STATE(781)] = 25824, - [SMALL_STATE(782)] = 25834, - [SMALL_STATE(783)] = 25844, - [SMALL_STATE(784)] = 25854, - [SMALL_STATE(785)] = 25864, - [SMALL_STATE(786)] = 25874, - [SMALL_STATE(787)] = 25884, - [SMALL_STATE(788)] = 25894, - [SMALL_STATE(789)] = 25904, - [SMALL_STATE(790)] = 25914, - [SMALL_STATE(791)] = 25924, - [SMALL_STATE(792)] = 25934, - [SMALL_STATE(793)] = 25944, - [SMALL_STATE(794)] = 25954, - [SMALL_STATE(795)] = 25964, - [SMALL_STATE(796)] = 25974, - [SMALL_STATE(797)] = 25981, - [SMALL_STATE(798)] = 25988, - [SMALL_STATE(799)] = 25995, - [SMALL_STATE(800)] = 26002, - [SMALL_STATE(801)] = 26009, - [SMALL_STATE(802)] = 26016, - [SMALL_STATE(803)] = 26023, - [SMALL_STATE(804)] = 26030, - [SMALL_STATE(805)] = 26037, - [SMALL_STATE(806)] = 26044, - [SMALL_STATE(807)] = 26051, - [SMALL_STATE(808)] = 26058, - [SMALL_STATE(809)] = 26065, - [SMALL_STATE(810)] = 26072, - [SMALL_STATE(811)] = 26076, - [SMALL_STATE(812)] = 26080, - [SMALL_STATE(813)] = 26084, - [SMALL_STATE(814)] = 26088, - [SMALL_STATE(815)] = 26092, - [SMALL_STATE(816)] = 26096, - [SMALL_STATE(817)] = 26100, - [SMALL_STATE(818)] = 26104, - [SMALL_STATE(819)] = 26108, - [SMALL_STATE(820)] = 26112, - [SMALL_STATE(821)] = 26116, - [SMALL_STATE(822)] = 26120, - [SMALL_STATE(823)] = 26124, - [SMALL_STATE(824)] = 26128, - [SMALL_STATE(825)] = 26132, - [SMALL_STATE(826)] = 26136, - [SMALL_STATE(827)] = 26140, - [SMALL_STATE(828)] = 26144, - [SMALL_STATE(829)] = 26148, - [SMALL_STATE(830)] = 26152, - [SMALL_STATE(831)] = 26156, - [SMALL_STATE(832)] = 26160, - [SMALL_STATE(833)] = 26164, - [SMALL_STATE(834)] = 26168, - [SMALL_STATE(835)] = 26172, - [SMALL_STATE(836)] = 26176, - [SMALL_STATE(837)] = 26180, - [SMALL_STATE(838)] = 26184, - [SMALL_STATE(839)] = 26188, - [SMALL_STATE(840)] = 26192, - [SMALL_STATE(841)] = 26196, - [SMALL_STATE(842)] = 26200, - [SMALL_STATE(843)] = 26204, - [SMALL_STATE(844)] = 26208, - [SMALL_STATE(845)] = 26212, - [SMALL_STATE(846)] = 26216, - [SMALL_STATE(847)] = 26220, - [SMALL_STATE(848)] = 26224, - [SMALL_STATE(849)] = 26228, - [SMALL_STATE(850)] = 26232, - [SMALL_STATE(851)] = 26236, - [SMALL_STATE(852)] = 26240, - [SMALL_STATE(853)] = 26244, - [SMALL_STATE(854)] = 26248, - [SMALL_STATE(855)] = 26252, - [SMALL_STATE(856)] = 26256, - [SMALL_STATE(857)] = 26260, - [SMALL_STATE(858)] = 26264, - [SMALL_STATE(859)] = 26268, - [SMALL_STATE(860)] = 26272, - [SMALL_STATE(861)] = 26276, - [SMALL_STATE(862)] = 26280, - [SMALL_STATE(863)] = 26284, - [SMALL_STATE(864)] = 26288, - [SMALL_STATE(865)] = 26292, - [SMALL_STATE(866)] = 26296, - [SMALL_STATE(867)] = 26300, - [SMALL_STATE(868)] = 26304, - [SMALL_STATE(869)] = 26308, - [SMALL_STATE(870)] = 26312, - [SMALL_STATE(871)] = 26316, - [SMALL_STATE(872)] = 26320, - [SMALL_STATE(873)] = 26324, - [SMALL_STATE(874)] = 26328, - [SMALL_STATE(875)] = 26332, - [SMALL_STATE(876)] = 26336, - [SMALL_STATE(877)] = 26340, - [SMALL_STATE(878)] = 26344, - [SMALL_STATE(879)] = 26348, - [SMALL_STATE(880)] = 26352, - [SMALL_STATE(881)] = 26356, - [SMALL_STATE(882)] = 26360, - [SMALL_STATE(883)] = 26364, - [SMALL_STATE(884)] = 26368, - [SMALL_STATE(885)] = 26372, - [SMALL_STATE(886)] = 26376, - [SMALL_STATE(887)] = 26380, - [SMALL_STATE(888)] = 26384, - [SMALL_STATE(889)] = 26388, - [SMALL_STATE(890)] = 26392, - [SMALL_STATE(891)] = 26396, - [SMALL_STATE(892)] = 26400, - [SMALL_STATE(893)] = 26404, - [SMALL_STATE(894)] = 26408, - [SMALL_STATE(895)] = 26412, - [SMALL_STATE(896)] = 26416, - [SMALL_STATE(897)] = 26420, - [SMALL_STATE(898)] = 26424, - [SMALL_STATE(899)] = 26428, - [SMALL_STATE(900)] = 26432, - [SMALL_STATE(901)] = 26436, + [SMALL_STATE(3)] = 75, + [SMALL_STATE(4)] = 150, + [SMALL_STATE(5)] = 225, + [SMALL_STATE(6)] = 300, + [SMALL_STATE(7)] = 375, + [SMALL_STATE(8)] = 450, + [SMALL_STATE(9)] = 525, + [SMALL_STATE(10)] = 600, + [SMALL_STATE(11)] = 675, + [SMALL_STATE(12)] = 750, + [SMALL_STATE(13)] = 825, + [SMALL_STATE(14)] = 900, + [SMALL_STATE(15)] = 975, + [SMALL_STATE(16)] = 1050, + [SMALL_STATE(17)] = 1112, + [SMALL_STATE(18)] = 1174, + [SMALL_STATE(19)] = 1236, + [SMALL_STATE(20)] = 1298, + [SMALL_STATE(21)] = 1360, + [SMALL_STATE(22)] = 1422, + [SMALL_STATE(23)] = 1484, + [SMALL_STATE(24)] = 1546, + [SMALL_STATE(25)] = 1608, + [SMALL_STATE(26)] = 1670, + [SMALL_STATE(27)] = 1732, + [SMALL_STATE(28)] = 1794, + [SMALL_STATE(29)] = 1856, + [SMALL_STATE(30)] = 1918, + [SMALL_STATE(31)] = 1980, + [SMALL_STATE(32)] = 2042, + [SMALL_STATE(33)] = 2104, + [SMALL_STATE(34)] = 2166, + [SMALL_STATE(35)] = 2228, + [SMALL_STATE(36)] = 2290, + [SMALL_STATE(37)] = 2352, + [SMALL_STATE(38)] = 2414, + [SMALL_STATE(39)] = 2476, + [SMALL_STATE(40)] = 2538, + [SMALL_STATE(41)] = 2600, + [SMALL_STATE(42)] = 2662, + [SMALL_STATE(43)] = 2724, + [SMALL_STATE(44)] = 2786, + [SMALL_STATE(45)] = 2848, + [SMALL_STATE(46)] = 2910, + [SMALL_STATE(47)] = 2972, + [SMALL_STATE(48)] = 3034, + [SMALL_STATE(49)] = 3096, + [SMALL_STATE(50)] = 3158, + [SMALL_STATE(51)] = 3220, + [SMALL_STATE(52)] = 3282, + [SMALL_STATE(53)] = 3344, + [SMALL_STATE(54)] = 3406, + [SMALL_STATE(55)] = 3468, + [SMALL_STATE(56)] = 3530, + [SMALL_STATE(57)] = 3592, + [SMALL_STATE(58)] = 3654, + [SMALL_STATE(59)] = 3716, + [SMALL_STATE(60)] = 3778, + [SMALL_STATE(61)] = 3840, + [SMALL_STATE(62)] = 3902, + [SMALL_STATE(63)] = 3964, + [SMALL_STATE(64)] = 4026, + [SMALL_STATE(65)] = 4088, + [SMALL_STATE(66)] = 4150, + [SMALL_STATE(67)] = 4212, + [SMALL_STATE(68)] = 4274, + [SMALL_STATE(69)] = 4336, + [SMALL_STATE(70)] = 4398, + [SMALL_STATE(71)] = 4460, + [SMALL_STATE(72)] = 4522, + [SMALL_STATE(73)] = 4584, + [SMALL_STATE(74)] = 4646, + [SMALL_STATE(75)] = 4718, + [SMALL_STATE(76)] = 4780, + [SMALL_STATE(77)] = 4842, + [SMALL_STATE(78)] = 4904, + [SMALL_STATE(79)] = 4966, + [SMALL_STATE(80)] = 5028, + [SMALL_STATE(81)] = 5090, + [SMALL_STATE(82)] = 5152, + [SMALL_STATE(83)] = 5214, + [SMALL_STATE(84)] = 5276, + [SMALL_STATE(85)] = 5338, + [SMALL_STATE(86)] = 5400, + [SMALL_STATE(87)] = 5462, + [SMALL_STATE(88)] = 5524, + [SMALL_STATE(89)] = 5586, + [SMALL_STATE(90)] = 5645, + [SMALL_STATE(91)] = 5704, + [SMALL_STATE(92)] = 5763, + [SMALL_STATE(93)] = 5822, + [SMALL_STATE(94)] = 5881, + [SMALL_STATE(95)] = 5940, + [SMALL_STATE(96)] = 5999, + [SMALL_STATE(97)] = 6058, + [SMALL_STATE(98)] = 6117, + [SMALL_STATE(99)] = 6176, + [SMALL_STATE(100)] = 6235, + [SMALL_STATE(101)] = 6294, + [SMALL_STATE(102)] = 6353, + [SMALL_STATE(103)] = 6412, + [SMALL_STATE(104)] = 6471, + [SMALL_STATE(105)] = 6530, + [SMALL_STATE(106)] = 6589, + [SMALL_STATE(107)] = 6648, + [SMALL_STATE(108)] = 6710, + [SMALL_STATE(109)] = 6772, + [SMALL_STATE(110)] = 6832, + [SMALL_STATE(111)] = 6892, + [SMALL_STATE(112)] = 6952, + [SMALL_STATE(113)] = 7012, + [SMALL_STATE(114)] = 7072, + [SMALL_STATE(115)] = 7132, + [SMALL_STATE(116)] = 7192, + [SMALL_STATE(117)] = 7252, + [SMALL_STATE(118)] = 7312, + [SMALL_STATE(119)] = 7372, + [SMALL_STATE(120)] = 7432, + [SMALL_STATE(121)] = 7492, + [SMALL_STATE(122)] = 7552, + [SMALL_STATE(123)] = 7612, + [SMALL_STATE(124)] = 7672, + [SMALL_STATE(125)] = 7732, + [SMALL_STATE(126)] = 7792, + [SMALL_STATE(127)] = 7852, + [SMALL_STATE(128)] = 7912, + [SMALL_STATE(129)] = 7972, + [SMALL_STATE(130)] = 8032, + [SMALL_STATE(131)] = 8092, + [SMALL_STATE(132)] = 8152, + [SMALL_STATE(133)] = 8212, + [SMALL_STATE(134)] = 8272, + [SMALL_STATE(135)] = 8332, + [SMALL_STATE(136)] = 8392, + [SMALL_STATE(137)] = 8452, + [SMALL_STATE(138)] = 8512, + [SMALL_STATE(139)] = 8572, + [SMALL_STATE(140)] = 8632, + [SMALL_STATE(141)] = 8692, + [SMALL_STATE(142)] = 8752, + [SMALL_STATE(143)] = 8812, + [SMALL_STATE(144)] = 8872, + [SMALL_STATE(145)] = 8932, + [SMALL_STATE(146)] = 8992, + [SMALL_STATE(147)] = 9052, + [SMALL_STATE(148)] = 9112, + [SMALL_STATE(149)] = 9172, + [SMALL_STATE(150)] = 9232, + [SMALL_STATE(151)] = 9292, + [SMALL_STATE(152)] = 9352, + [SMALL_STATE(153)] = 9412, + [SMALL_STATE(154)] = 9472, + [SMALL_STATE(155)] = 9532, + [SMALL_STATE(156)] = 9592, + [SMALL_STATE(157)] = 9643, + [SMALL_STATE(158)] = 9694, + [SMALL_STATE(159)] = 9745, + [SMALL_STATE(160)] = 9796, + [SMALL_STATE(161)] = 9847, + [SMALL_STATE(162)] = 9898, + [SMALL_STATE(163)] = 9949, + [SMALL_STATE(164)] = 9990, + [SMALL_STATE(165)] = 10041, + [SMALL_STATE(166)] = 10082, + [SMALL_STATE(167)] = 10133, + [SMALL_STATE(168)] = 10181, + [SMALL_STATE(169)] = 10229, + [SMALL_STATE(170)] = 10277, + [SMALL_STATE(171)] = 10325, + [SMALL_STATE(172)] = 10373, + [SMALL_STATE(173)] = 10421, + [SMALL_STATE(174)] = 10469, + [SMALL_STATE(175)] = 10517, + [SMALL_STATE(176)] = 10565, + [SMALL_STATE(177)] = 10613, + [SMALL_STATE(178)] = 10661, + [SMALL_STATE(179)] = 10709, + [SMALL_STATE(180)] = 10757, + [SMALL_STATE(181)] = 10805, + [SMALL_STATE(182)] = 10850, + [SMALL_STATE(183)] = 10895, + [SMALL_STATE(184)] = 10940, + [SMALL_STATE(185)] = 10985, + [SMALL_STATE(186)] = 11030, + [SMALL_STATE(187)] = 11075, + [SMALL_STATE(188)] = 11120, + [SMALL_STATE(189)] = 11165, + [SMALL_STATE(190)] = 11210, + [SMALL_STATE(191)] = 11255, + [SMALL_STATE(192)] = 11300, + [SMALL_STATE(193)] = 11345, + [SMALL_STATE(194)] = 11390, + [SMALL_STATE(195)] = 11435, + [SMALL_STATE(196)] = 11475, + [SMALL_STATE(197)] = 11515, + [SMALL_STATE(198)] = 11553, + [SMALL_STATE(199)] = 11591, + [SMALL_STATE(200)] = 11629, + [SMALL_STATE(201)] = 11665, + [SMALL_STATE(202)] = 11703, + [SMALL_STATE(203)] = 11739, + [SMALL_STATE(204)] = 11774, + [SMALL_STATE(205)] = 11809, + [SMALL_STATE(206)] = 11844, + [SMALL_STATE(207)] = 11879, + [SMALL_STATE(208)] = 11914, + [SMALL_STATE(209)] = 11949, + [SMALL_STATE(210)] = 11981, + [SMALL_STATE(211)] = 12013, + [SMALL_STATE(212)] = 12045, + [SMALL_STATE(213)] = 12077, + [SMALL_STATE(214)] = 12109, + [SMALL_STATE(215)] = 12141, + [SMALL_STATE(216)] = 12173, + [SMALL_STATE(217)] = 12205, + [SMALL_STATE(218)] = 12237, + [SMALL_STATE(219)] = 12269, + [SMALL_STATE(220)] = 12301, + [SMALL_STATE(221)] = 12333, + [SMALL_STATE(222)] = 12365, + [SMALL_STATE(223)] = 12397, + [SMALL_STATE(224)] = 12429, + [SMALL_STATE(225)] = 12461, + [SMALL_STATE(226)] = 12493, + [SMALL_STATE(227)] = 12525, + [SMALL_STATE(228)] = 12557, + [SMALL_STATE(229)] = 12589, + [SMALL_STATE(230)] = 12621, + [SMALL_STATE(231)] = 12653, + [SMALL_STATE(232)] = 12685, + [SMALL_STATE(233)] = 12717, + [SMALL_STATE(234)] = 12742, + [SMALL_STATE(235)] = 12771, + [SMALL_STATE(236)] = 12791, + [SMALL_STATE(237)] = 12811, + [SMALL_STATE(238)] = 12831, + [SMALL_STATE(239)] = 12851, + [SMALL_STATE(240)] = 12871, + [SMALL_STATE(241)] = 12891, + [SMALL_STATE(242)] = 12911, + [SMALL_STATE(243)] = 12931, + [SMALL_STATE(244)] = 12951, + [SMALL_STATE(245)] = 12971, + [SMALL_STATE(246)] = 12991, + [SMALL_STATE(247)] = 13011, + [SMALL_STATE(248)] = 13038, + [SMALL_STATE(249)] = 13056, + [SMALL_STATE(250)] = 13074, + [SMALL_STATE(251)] = 13092, + [SMALL_STATE(252)] = 13110, + [SMALL_STATE(253)] = 13128, + [SMALL_STATE(254)] = 13146, + [SMALL_STATE(255)] = 13172, + [SMALL_STATE(256)] = 13190, + [SMALL_STATE(257)] = 13216, + [SMALL_STATE(258)] = 13234, + [SMALL_STATE(259)] = 13252, + [SMALL_STATE(260)] = 13270, + [SMALL_STATE(261)] = 13288, + [SMALL_STATE(262)] = 13306, + [SMALL_STATE(263)] = 13324, + [SMALL_STATE(264)] = 13342, + [SMALL_STATE(265)] = 13360, + [SMALL_STATE(266)] = 13378, + [SMALL_STATE(267)] = 13396, + [SMALL_STATE(268)] = 13414, + [SMALL_STATE(269)] = 13432, + [SMALL_STATE(270)] = 13450, + [SMALL_STATE(271)] = 13468, + [SMALL_STATE(272)] = 13486, + [SMALL_STATE(273)] = 13504, + [SMALL_STATE(274)] = 13522, + [SMALL_STATE(275)] = 13540, + [SMALL_STATE(276)] = 13558, + [SMALL_STATE(277)] = 13576, + [SMALL_STATE(278)] = 13594, + [SMALL_STATE(279)] = 13612, + [SMALL_STATE(280)] = 13630, + [SMALL_STATE(281)] = 13648, + [SMALL_STATE(282)] = 13666, + [SMALL_STATE(283)] = 13684, + [SMALL_STATE(284)] = 13708, + [SMALL_STATE(285)] = 13726, + [SMALL_STATE(286)] = 13752, + [SMALL_STATE(287)] = 13770, + [SMALL_STATE(288)] = 13788, + [SMALL_STATE(289)] = 13805, + [SMALL_STATE(290)] = 13822, + [SMALL_STATE(291)] = 13839, + [SMALL_STATE(292)] = 13856, + [SMALL_STATE(293)] = 13873, + [SMALL_STATE(294)] = 13890, + [SMALL_STATE(295)] = 13907, + [SMALL_STATE(296)] = 13924, + [SMALL_STATE(297)] = 13941, + [SMALL_STATE(298)] = 13958, + [SMALL_STATE(299)] = 13977, + [SMALL_STATE(300)] = 13993, + [SMALL_STATE(301)] = 14009, + [SMALL_STATE(302)] = 14025, + [SMALL_STATE(303)] = 14041, + [SMALL_STATE(304)] = 14057, + [SMALL_STATE(305)] = 14073, + [SMALL_STATE(306)] = 14093, + [SMALL_STATE(307)] = 14109, + [SMALL_STATE(308)] = 14125, + [SMALL_STATE(309)] = 14141, + [SMALL_STATE(310)] = 14157, + [SMALL_STATE(311)] = 14173, + [SMALL_STATE(312)] = 14189, + [SMALL_STATE(313)] = 14205, + [SMALL_STATE(314)] = 14221, + [SMALL_STATE(315)] = 14237, + [SMALL_STATE(316)] = 14253, + [SMALL_STATE(317)] = 14269, + [SMALL_STATE(318)] = 14285, + [SMALL_STATE(319)] = 14301, + [SMALL_STATE(320)] = 14317, + [SMALL_STATE(321)] = 14333, + [SMALL_STATE(322)] = 14349, + [SMALL_STATE(323)] = 14365, + [SMALL_STATE(324)] = 14381, + [SMALL_STATE(325)] = 14397, + [SMALL_STATE(326)] = 14413, + [SMALL_STATE(327)] = 14429, + [SMALL_STATE(328)] = 14445, + [SMALL_STATE(329)] = 14461, + [SMALL_STATE(330)] = 14477, + [SMALL_STATE(331)] = 14493, + [SMALL_STATE(332)] = 14509, + [SMALL_STATE(333)] = 14525, + [SMALL_STATE(334)] = 14541, + [SMALL_STATE(335)] = 14557, + [SMALL_STATE(336)] = 14573, + [SMALL_STATE(337)] = 14589, + [SMALL_STATE(338)] = 14605, + [SMALL_STATE(339)] = 14621, + [SMALL_STATE(340)] = 14637, + [SMALL_STATE(341)] = 14653, + [SMALL_STATE(342)] = 14669, + [SMALL_STATE(343)] = 14685, + [SMALL_STATE(344)] = 14701, + [SMALL_STATE(345)] = 14717, + [SMALL_STATE(346)] = 14733, + [SMALL_STATE(347)] = 14749, + [SMALL_STATE(348)] = 14765, + [SMALL_STATE(349)] = 14781, + [SMALL_STATE(350)] = 14797, + [SMALL_STATE(351)] = 14813, + [SMALL_STATE(352)] = 14829, + [SMALL_STATE(353)] = 14845, + [SMALL_STATE(354)] = 14861, + [SMALL_STATE(355)] = 14877, + [SMALL_STATE(356)] = 14893, + [SMALL_STATE(357)] = 14909, + [SMALL_STATE(358)] = 14925, + [SMALL_STATE(359)] = 14941, + [SMALL_STATE(360)] = 14957, + [SMALL_STATE(361)] = 14973, + [SMALL_STATE(362)] = 14989, + [SMALL_STATE(363)] = 15005, + [SMALL_STATE(364)] = 15021, + [SMALL_STATE(365)] = 15037, + [SMALL_STATE(366)] = 15053, + [SMALL_STATE(367)] = 15069, + [SMALL_STATE(368)] = 15085, + [SMALL_STATE(369)] = 15101, + [SMALL_STATE(370)] = 15117, + [SMALL_STATE(371)] = 15133, + [SMALL_STATE(372)] = 15149, + [SMALL_STATE(373)] = 15165, + [SMALL_STATE(374)] = 15181, + [SMALL_STATE(375)] = 15197, + [SMALL_STATE(376)] = 15213, + [SMALL_STATE(377)] = 15229, + [SMALL_STATE(378)] = 15245, + [SMALL_STATE(379)] = 15261, + [SMALL_STATE(380)] = 15277, + [SMALL_STATE(381)] = 15293, + [SMALL_STATE(382)] = 15309, + [SMALL_STATE(383)] = 15325, + [SMALL_STATE(384)] = 15341, + [SMALL_STATE(385)] = 15357, + [SMALL_STATE(386)] = 15373, + [SMALL_STATE(387)] = 15389, + [SMALL_STATE(388)] = 15405, + [SMALL_STATE(389)] = 15421, + [SMALL_STATE(390)] = 15437, + [SMALL_STATE(391)] = 15453, + [SMALL_STATE(392)] = 15469, + [SMALL_STATE(393)] = 15485, + [SMALL_STATE(394)] = 15501, + [SMALL_STATE(395)] = 15517, + [SMALL_STATE(396)] = 15533, + [SMALL_STATE(397)] = 15549, + [SMALL_STATE(398)] = 15565, + [SMALL_STATE(399)] = 15581, + [SMALL_STATE(400)] = 15597, + [SMALL_STATE(401)] = 15613, + [SMALL_STATE(402)] = 15629, + [SMALL_STATE(403)] = 15645, + [SMALL_STATE(404)] = 15661, + [SMALL_STATE(405)] = 15677, + [SMALL_STATE(406)] = 15693, + [SMALL_STATE(407)] = 15709, + [SMALL_STATE(408)] = 15725, + [SMALL_STATE(409)] = 15741, + [SMALL_STATE(410)] = 15757, + [SMALL_STATE(411)] = 15773, + [SMALL_STATE(412)] = 15789, + [SMALL_STATE(413)] = 15805, + [SMALL_STATE(414)] = 15821, + [SMALL_STATE(415)] = 15837, + [SMALL_STATE(416)] = 15853, + [SMALL_STATE(417)] = 15869, + [SMALL_STATE(418)] = 15885, + [SMALL_STATE(419)] = 15901, + [SMALL_STATE(420)] = 15917, + [SMALL_STATE(421)] = 15933, + [SMALL_STATE(422)] = 15949, + [SMALL_STATE(423)] = 15965, + [SMALL_STATE(424)] = 15981, + [SMALL_STATE(425)] = 15997, + [SMALL_STATE(426)] = 16013, + [SMALL_STATE(427)] = 16029, + [SMALL_STATE(428)] = 16045, + [SMALL_STATE(429)] = 16061, + [SMALL_STATE(430)] = 16077, + [SMALL_STATE(431)] = 16093, + [SMALL_STATE(432)] = 16109, + [SMALL_STATE(433)] = 16125, + [SMALL_STATE(434)] = 16141, + [SMALL_STATE(435)] = 16157, + [SMALL_STATE(436)] = 16173, + [SMALL_STATE(437)] = 16189, + [SMALL_STATE(438)] = 16205, + [SMALL_STATE(439)] = 16221, + [SMALL_STATE(440)] = 16237, + [SMALL_STATE(441)] = 16253, + [SMALL_STATE(442)] = 16269, + [SMALL_STATE(443)] = 16285, + [SMALL_STATE(444)] = 16301, + [SMALL_STATE(445)] = 16317, + [SMALL_STATE(446)] = 16333, + [SMALL_STATE(447)] = 16349, + [SMALL_STATE(448)] = 16365, + [SMALL_STATE(449)] = 16381, + [SMALL_STATE(450)] = 16397, + [SMALL_STATE(451)] = 16413, + [SMALL_STATE(452)] = 16429, + [SMALL_STATE(453)] = 16445, + [SMALL_STATE(454)] = 16461, + [SMALL_STATE(455)] = 16477, + [SMALL_STATE(456)] = 16493, + [SMALL_STATE(457)] = 16509, + [SMALL_STATE(458)] = 16525, + [SMALL_STATE(459)] = 16541, + [SMALL_STATE(460)] = 16557, + [SMALL_STATE(461)] = 16573, + [SMALL_STATE(462)] = 16589, + [SMALL_STATE(463)] = 16605, + [SMALL_STATE(464)] = 16621, + [SMALL_STATE(465)] = 16637, + [SMALL_STATE(466)] = 16653, + [SMALL_STATE(467)] = 16669, + [SMALL_STATE(468)] = 16685, + [SMALL_STATE(469)] = 16701, + [SMALL_STATE(470)] = 16717, + [SMALL_STATE(471)] = 16733, + [SMALL_STATE(472)] = 16749, + [SMALL_STATE(473)] = 16765, + [SMALL_STATE(474)] = 16781, + [SMALL_STATE(475)] = 16797, + [SMALL_STATE(476)] = 16812, + [SMALL_STATE(477)] = 16831, + [SMALL_STATE(478)] = 16846, + [SMALL_STATE(479)] = 16861, + [SMALL_STATE(480)] = 16880, + [SMALL_STATE(481)] = 16895, + [SMALL_STATE(482)] = 16910, + [SMALL_STATE(483)] = 16925, + [SMALL_STATE(484)] = 16940, + [SMALL_STATE(485)] = 16955, + [SMALL_STATE(486)] = 16970, + [SMALL_STATE(487)] = 16985, + [SMALL_STATE(488)] = 17000, + [SMALL_STATE(489)] = 17015, + [SMALL_STATE(490)] = 17030, + [SMALL_STATE(491)] = 17045, + [SMALL_STATE(492)] = 17066, + [SMALL_STATE(493)] = 17081, + [SMALL_STATE(494)] = 17096, + [SMALL_STATE(495)] = 17111, + [SMALL_STATE(496)] = 17125, + [SMALL_STATE(497)] = 17139, + [SMALL_STATE(498)] = 17153, + [SMALL_STATE(499)] = 17165, + [SMALL_STATE(500)] = 17177, + [SMALL_STATE(501)] = 17191, + [SMALL_STATE(502)] = 17205, + [SMALL_STATE(503)] = 17219, + [SMALL_STATE(504)] = 17233, + [SMALL_STATE(505)] = 17245, + [SMALL_STATE(506)] = 17259, + [SMALL_STATE(507)] = 17273, + [SMALL_STATE(508)] = 17287, + [SMALL_STATE(509)] = 17301, + [SMALL_STATE(510)] = 17315, + [SMALL_STATE(511)] = 17329, + [SMALL_STATE(512)] = 17343, + [SMALL_STATE(513)] = 17357, + [SMALL_STATE(514)] = 17371, + [SMALL_STATE(515)] = 17385, + [SMALL_STATE(516)] = 17399, + [SMALL_STATE(517)] = 17413, + [SMALL_STATE(518)] = 17427, + [SMALL_STATE(519)] = 17439, + [SMALL_STATE(520)] = 17451, + [SMALL_STATE(521)] = 17465, + [SMALL_STATE(522)] = 17475, + [SMALL_STATE(523)] = 17485, + [SMALL_STATE(524)] = 17495, + [SMALL_STATE(525)] = 17501, + [SMALL_STATE(526)] = 17511, + [SMALL_STATE(527)] = 17517, + [SMALL_STATE(528)] = 17527, + [SMALL_STATE(529)] = 17537, + [SMALL_STATE(530)] = 17547, + [SMALL_STATE(531)] = 17557, + [SMALL_STATE(532)] = 17567, + [SMALL_STATE(533)] = 17577, + [SMALL_STATE(534)] = 17587, + [SMALL_STATE(535)] = 17593, + [SMALL_STATE(536)] = 17603, + [SMALL_STATE(537)] = 17613, + [SMALL_STATE(538)] = 17623, + [SMALL_STATE(539)] = 17633, + [SMALL_STATE(540)] = 17643, + [SMALL_STATE(541)] = 17653, + [SMALL_STATE(542)] = 17663, + [SMALL_STATE(543)] = 17673, + [SMALL_STATE(544)] = 17683, + [SMALL_STATE(545)] = 17693, + [SMALL_STATE(546)] = 17703, + [SMALL_STATE(547)] = 17713, + [SMALL_STATE(548)] = 17723, + [SMALL_STATE(549)] = 17733, + [SMALL_STATE(550)] = 17743, + [SMALL_STATE(551)] = 17753, + [SMALL_STATE(552)] = 17763, + [SMALL_STATE(553)] = 17773, + [SMALL_STATE(554)] = 17783, + [SMALL_STATE(555)] = 17793, + [SMALL_STATE(556)] = 17803, + [SMALL_STATE(557)] = 17813, + [SMALL_STATE(558)] = 17823, + [SMALL_STATE(559)] = 17833, + [SMALL_STATE(560)] = 17843, + [SMALL_STATE(561)] = 17853, + [SMALL_STATE(562)] = 17863, + [SMALL_STATE(563)] = 17873, + [SMALL_STATE(564)] = 17883, + [SMALL_STATE(565)] = 17893, + [SMALL_STATE(566)] = 17903, + [SMALL_STATE(567)] = 17913, + [SMALL_STATE(568)] = 17923, + [SMALL_STATE(569)] = 17933, + [SMALL_STATE(570)] = 17943, + [SMALL_STATE(571)] = 17953, + [SMALL_STATE(572)] = 17963, + [SMALL_STATE(573)] = 17973, + [SMALL_STATE(574)] = 17983, + [SMALL_STATE(575)] = 17993, + [SMALL_STATE(576)] = 18003, + [SMALL_STATE(577)] = 18013, + [SMALL_STATE(578)] = 18023, + [SMALL_STATE(579)] = 18033, + [SMALL_STATE(580)] = 18043, + [SMALL_STATE(581)] = 18053, + [SMALL_STATE(582)] = 18063, + [SMALL_STATE(583)] = 18073, + [SMALL_STATE(584)] = 18083, + [SMALL_STATE(585)] = 18093, + [SMALL_STATE(586)] = 18103, + [SMALL_STATE(587)] = 18113, + [SMALL_STATE(588)] = 18123, + [SMALL_STATE(589)] = 18133, + [SMALL_STATE(590)] = 18143, + [SMALL_STATE(591)] = 18153, + [SMALL_STATE(592)] = 18163, + [SMALL_STATE(593)] = 18173, + [SMALL_STATE(594)] = 18183, + [SMALL_STATE(595)] = 18193, + [SMALL_STATE(596)] = 18203, + [SMALL_STATE(597)] = 18213, + [SMALL_STATE(598)] = 18223, + [SMALL_STATE(599)] = 18233, + [SMALL_STATE(600)] = 18243, + [SMALL_STATE(601)] = 18253, + [SMALL_STATE(602)] = 18263, + [SMALL_STATE(603)] = 18273, + [SMALL_STATE(604)] = 18283, + [SMALL_STATE(605)] = 18293, + [SMALL_STATE(606)] = 18303, + [SMALL_STATE(607)] = 18313, + [SMALL_STATE(608)] = 18323, + [SMALL_STATE(609)] = 18333, + [SMALL_STATE(610)] = 18343, + [SMALL_STATE(611)] = 18353, + [SMALL_STATE(612)] = 18363, + [SMALL_STATE(613)] = 18373, + [SMALL_STATE(614)] = 18383, + [SMALL_STATE(615)] = 18393, + [SMALL_STATE(616)] = 18403, + [SMALL_STATE(617)] = 18413, + [SMALL_STATE(618)] = 18423, + [SMALL_STATE(619)] = 18433, + [SMALL_STATE(620)] = 18443, + [SMALL_STATE(621)] = 18453, + [SMALL_STATE(622)] = 18463, + [SMALL_STATE(623)] = 18473, + [SMALL_STATE(624)] = 18483, + [SMALL_STATE(625)] = 18493, + [SMALL_STATE(626)] = 18503, + [SMALL_STATE(627)] = 18513, + [SMALL_STATE(628)] = 18523, + [SMALL_STATE(629)] = 18533, + [SMALL_STATE(630)] = 18543, + [SMALL_STATE(631)] = 18553, + [SMALL_STATE(632)] = 18563, + [SMALL_STATE(633)] = 18573, + [SMALL_STATE(634)] = 18583, + [SMALL_STATE(635)] = 18593, + [SMALL_STATE(636)] = 18603, + [SMALL_STATE(637)] = 18613, + [SMALL_STATE(638)] = 18623, + [SMALL_STATE(639)] = 18633, + [SMALL_STATE(640)] = 18643, + [SMALL_STATE(641)] = 18653, + [SMALL_STATE(642)] = 18660, + [SMALL_STATE(643)] = 18667, + [SMALL_STATE(644)] = 18674, + [SMALL_STATE(645)] = 18681, + [SMALL_STATE(646)] = 18688, + [SMALL_STATE(647)] = 18695, + [SMALL_STATE(648)] = 18702, + [SMALL_STATE(649)] = 18709, + [SMALL_STATE(650)] = 18716, + [SMALL_STATE(651)] = 18723, + [SMALL_STATE(652)] = 18730, + [SMALL_STATE(653)] = 18737, + [SMALL_STATE(654)] = 18744, + [SMALL_STATE(655)] = 18751, + [SMALL_STATE(656)] = 18758, + [SMALL_STATE(657)] = 18765, + [SMALL_STATE(658)] = 18772, + [SMALL_STATE(659)] = 18779, + [SMALL_STATE(660)] = 18786, + [SMALL_STATE(661)] = 18793, + [SMALL_STATE(662)] = 18800, + [SMALL_STATE(663)] = 18807, + [SMALL_STATE(664)] = 18814, + [SMALL_STATE(665)] = 18821, + [SMALL_STATE(666)] = 18828, + [SMALL_STATE(667)] = 18835, + [SMALL_STATE(668)] = 18842, + [SMALL_STATE(669)] = 18849, + [SMALL_STATE(670)] = 18856, + [SMALL_STATE(671)] = 18863, + [SMALL_STATE(672)] = 18870, + [SMALL_STATE(673)] = 18877, + [SMALL_STATE(674)] = 18884, + [SMALL_STATE(675)] = 18891, + [SMALL_STATE(676)] = 18898, + [SMALL_STATE(677)] = 18905, + [SMALL_STATE(678)] = 18912, + [SMALL_STATE(679)] = 18919, + [SMALL_STATE(680)] = 18926, + [SMALL_STATE(681)] = 18933, + [SMALL_STATE(682)] = 18940, + [SMALL_STATE(683)] = 18947, + [SMALL_STATE(684)] = 18954, + [SMALL_STATE(685)] = 18961, + [SMALL_STATE(686)] = 18968, + [SMALL_STATE(687)] = 18975, + [SMALL_STATE(688)] = 18982, + [SMALL_STATE(689)] = 18989, + [SMALL_STATE(690)] = 18996, + [SMALL_STATE(691)] = 19000, + [SMALL_STATE(692)] = 19004, + [SMALL_STATE(693)] = 19008, + [SMALL_STATE(694)] = 19012, + [SMALL_STATE(695)] = 19016, + [SMALL_STATE(696)] = 19020, + [SMALL_STATE(697)] = 19024, + [SMALL_STATE(698)] = 19028, + [SMALL_STATE(699)] = 19032, + [SMALL_STATE(700)] = 19036, + [SMALL_STATE(701)] = 19040, + [SMALL_STATE(702)] = 19044, + [SMALL_STATE(703)] = 19048, + [SMALL_STATE(704)] = 19052, + [SMALL_STATE(705)] = 19056, + [SMALL_STATE(706)] = 19060, + [SMALL_STATE(707)] = 19064, + [SMALL_STATE(708)] = 19068, + [SMALL_STATE(709)] = 19072, + [SMALL_STATE(710)] = 19076, + [SMALL_STATE(711)] = 19080, + [SMALL_STATE(712)] = 19084, + [SMALL_STATE(713)] = 19088, + [SMALL_STATE(714)] = 19092, + [SMALL_STATE(715)] = 19096, + [SMALL_STATE(716)] = 19100, + [SMALL_STATE(717)] = 19104, + [SMALL_STATE(718)] = 19108, + [SMALL_STATE(719)] = 19112, + [SMALL_STATE(720)] = 19116, + [SMALL_STATE(721)] = 19120, + [SMALL_STATE(722)] = 19124, + [SMALL_STATE(723)] = 19128, + [SMALL_STATE(724)] = 19132, + [SMALL_STATE(725)] = 19136, + [SMALL_STATE(726)] = 19140, + [SMALL_STATE(727)] = 19144, + [SMALL_STATE(728)] = 19148, + [SMALL_STATE(729)] = 19152, + [SMALL_STATE(730)] = 19156, + [SMALL_STATE(731)] = 19160, + [SMALL_STATE(732)] = 19164, + [SMALL_STATE(733)] = 19168, + [SMALL_STATE(734)] = 19172, + [SMALL_STATE(735)] = 19176, + [SMALL_STATE(736)] = 19180, + [SMALL_STATE(737)] = 19184, + [SMALL_STATE(738)] = 19188, + [SMALL_STATE(739)] = 19192, + [SMALL_STATE(740)] = 19196, + [SMALL_STATE(741)] = 19200, + [SMALL_STATE(742)] = 19204, + [SMALL_STATE(743)] = 19208, + [SMALL_STATE(744)] = 19212, + [SMALL_STATE(745)] = 19216, + [SMALL_STATE(746)] = 19220, + [SMALL_STATE(747)] = 19224, + [SMALL_STATE(748)] = 19228, + [SMALL_STATE(749)] = 19232, + [SMALL_STATE(750)] = 19236, + [SMALL_STATE(751)] = 19240, + [SMALL_STATE(752)] = 19244, + [SMALL_STATE(753)] = 19248, + [SMALL_STATE(754)] = 19252, + [SMALL_STATE(755)] = 19256, + [SMALL_STATE(756)] = 19260, + [SMALL_STATE(757)] = 19264, + [SMALL_STATE(758)] = 19268, + [SMALL_STATE(759)] = 19272, + [SMALL_STATE(760)] = 19276, + [SMALL_STATE(761)] = 19280, + [SMALL_STATE(762)] = 19284, + [SMALL_STATE(763)] = 19288, + [SMALL_STATE(764)] = 19292, + [SMALL_STATE(765)] = 19296, + [SMALL_STATE(766)] = 19300, + [SMALL_STATE(767)] = 19304, + [SMALL_STATE(768)] = 19308, + [SMALL_STATE(769)] = 19312, + [SMALL_STATE(770)] = 19316, + [SMALL_STATE(771)] = 19320, + [SMALL_STATE(772)] = 19324, + [SMALL_STATE(773)] = 19328, + [SMALL_STATE(774)] = 19332, + [SMALL_STATE(775)] = 19336, + [SMALL_STATE(776)] = 19340, + [SMALL_STATE(777)] = 19344, + [SMALL_STATE(778)] = 19348, + [SMALL_STATE(779)] = 19352, + [SMALL_STATE(780)] = 19356, + [SMALL_STATE(781)] = 19360, + [SMALL_STATE(782)] = 19364, + [SMALL_STATE(783)] = 19368, + [SMALL_STATE(784)] = 19372, + [SMALL_STATE(785)] = 19376, + [SMALL_STATE(786)] = 19380, + [SMALL_STATE(787)] = 19384, + [SMALL_STATE(788)] = 19388, + [SMALL_STATE(789)] = 19392, + [SMALL_STATE(790)] = 19396, + [SMALL_STATE(791)] = 19400, + [SMALL_STATE(792)] = 19404, + [SMALL_STATE(793)] = 19408, + [SMALL_STATE(794)] = 19412, + [SMALL_STATE(795)] = 19416, + [SMALL_STATE(796)] = 19420, + [SMALL_STATE(797)] = 19424, + [SMALL_STATE(798)] = 19428, + [SMALL_STATE(799)] = 19432, + [SMALL_STATE(800)] = 19436, + [SMALL_STATE(801)] = 19440, + [SMALL_STATE(802)] = 19444, + [SMALL_STATE(803)] = 19448, + [SMALL_STATE(804)] = 19452, + [SMALL_STATE(805)] = 19456, + [SMALL_STATE(806)] = 19460, + [SMALL_STATE(807)] = 19464, + [SMALL_STATE(808)] = 19468, + [SMALL_STATE(809)] = 19472, + [SMALL_STATE(810)] = 19476, + [SMALL_STATE(811)] = 19480, + [SMALL_STATE(812)] = 19484, + [SMALL_STATE(813)] = 19488, + [SMALL_STATE(814)] = 19492, + [SMALL_STATE(815)] = 19496, + [SMALL_STATE(816)] = 19500, + [SMALL_STATE(817)] = 19504, + [SMALL_STATE(818)] = 19508, + [SMALL_STATE(819)] = 19512, + [SMALL_STATE(820)] = 19516, + [SMALL_STATE(821)] = 19520, + [SMALL_STATE(822)] = 19524, + [SMALL_STATE(823)] = 19528, + [SMALL_STATE(824)] = 19532, + [SMALL_STATE(825)] = 19536, + [SMALL_STATE(826)] = 19540, + [SMALL_STATE(827)] = 19544, + [SMALL_STATE(828)] = 19548, + [SMALL_STATE(829)] = 19552, + [SMALL_STATE(830)] = 19556, + [SMALL_STATE(831)] = 19560, + [SMALL_STATE(832)] = 19564, + [SMALL_STATE(833)] = 19568, + [SMALL_STATE(834)] = 19572, + [SMALL_STATE(835)] = 19576, + [SMALL_STATE(836)] = 19580, + [SMALL_STATE(837)] = 19584, + [SMALL_STATE(838)] = 19588, + [SMALL_STATE(839)] = 19592, + [SMALL_STATE(840)] = 19596, + [SMALL_STATE(841)] = 19600, + [SMALL_STATE(842)] = 19604, + [SMALL_STATE(843)] = 19608, + [SMALL_STATE(844)] = 19612, + [SMALL_STATE(845)] = 19616, + [SMALL_STATE(846)] = 19620, + [SMALL_STATE(847)] = 19624, + [SMALL_STATE(848)] = 19628, + [SMALL_STATE(849)] = 19632, + [SMALL_STATE(850)] = 19636, + [SMALL_STATE(851)] = 19640, + [SMALL_STATE(852)] = 19644, + [SMALL_STATE(853)] = 19648, + [SMALL_STATE(854)] = 19652, + [SMALL_STATE(855)] = 19656, + [SMALL_STATE(856)] = 19660, + [SMALL_STATE(857)] = 19664, + [SMALL_STATE(858)] = 19668, + [SMALL_STATE(859)] = 19672, + [SMALL_STATE(860)] = 19676, + [SMALL_STATE(861)] = 19680, + [SMALL_STATE(862)] = 19684, + [SMALL_STATE(863)] = 19688, + [SMALL_STATE(864)] = 19692, + [SMALL_STATE(865)] = 19696, + [SMALL_STATE(866)] = 19700, + [SMALL_STATE(867)] = 19704, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(359), - [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(322), - [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(115), - [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(55), - [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(312), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(273), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(353), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(191), - [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(778), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(691), - [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(706), - [542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(678), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(679), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(680), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(681), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(682), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(764), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(262), - [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(778), - [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(678), - [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(679), - [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(680), - [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(681), - [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(682), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(683), - [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(263), - [751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(742), - [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(264), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(705), - [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(265), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(775), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(267), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(783), - [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(268), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(722), - [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2), SHIFT_REPEAT(417), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2), SHIFT_REPEAT(347), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2), - [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2), SHIFT_REPEAT(314), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2), SHIFT_REPEAT(309), - [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2), SHIFT_REPEAT(409), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__gen_exp_arguments, 1), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted_argument, 1), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__gen_exp_arguments, 2), - [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(359), - [844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(322), - [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(279), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(417), - [899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(347), - [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(308), - [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted_argument, 1), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(644), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(360), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(311), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(650), - [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(391), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), - [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(317), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_element, 1), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(671), - [956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(374), - [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(319), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(657), - [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(379), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(321), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 1), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 1), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1), - [995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(664), - [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(340), - [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(750), - [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), - [1008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(346), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(346), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 2), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 2), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paren_argument, 2), - [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paren_argument, 2), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 5), - [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 5), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cache_var, 5), - [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cache_var, 5), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_var, 4), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_var, 4), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), - [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_exp, 4), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_exp, 4), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_ref, 1), - [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_ref, 1), - [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_exp, 3), - [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_exp, 3), - [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paren_argument, 3), - [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paren_argument, 3), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 3), - [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 3), - [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1), - [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_sequence, 1), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 5), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 5), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 3), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 3), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 4), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 4), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 4), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 4), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 3), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 3), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 3), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 3), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 5), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 5), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 4), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 4), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 4), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 4), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 5), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 5), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 3), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 3), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 2), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 2), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 2), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 2), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 2), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 2), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 2), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 2), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 2), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 2), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_def, 2), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_def, 2), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 7), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 7), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 3), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 3), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 3), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 3), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(383), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), - [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(383), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 3), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 3), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 3), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 3), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 3), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 3), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 3), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 3), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_def, 3), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_def, 3), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 6), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 6), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 4), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 4), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__quoted_text_repeat1, 1), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_text_repeat1, 1), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 3), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 3), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 3), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 3), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 3), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 3), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 3), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 3), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endblock_command, 3), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endblock_command, 3), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 5), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 5), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 4), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 4), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 4), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 4), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endblock_command, 5), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endblock_command, 5), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 4), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 4), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 4), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 4), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endblock_command, 4), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endblock_command, 4), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 5), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 5), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 5), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 5), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 5), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 5), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 5), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 5), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 1), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 1), - [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(497), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(497), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_command, 5), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_command, 5), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 5), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 5), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 5), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 5), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 5), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 5), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 5), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 5), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_command, 4), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_command, 4), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 4), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 4), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 4), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 4), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 4), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 4), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 4), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 4), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_command, 3), - [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_command, 3), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 3), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 3), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 3), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 3), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 3), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 3), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 3), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 3), - [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(640), - [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(640), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__quoted_text_repeat1, 2), - [1368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_text_repeat1, 2), SHIFT_REPEAT(643), - [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_text_repeat1, 2), SHIFT_REPEAT(643), - [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(646), - [1377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(646), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), - [1586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(744), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__gen_exp_content, 1), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__gen_exp_content, 2), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [1935] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(108), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(583), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(602), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(573), + [185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(550), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(640), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(639), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(637), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(636), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_condition_repeat1, 2), SHIFT_REPEAT(617), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(241), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(209), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(95), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(98), + [249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(198), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(163), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__paren_argument_repeat1, 2), SHIFT_REPEAT(240), + [260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 1), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(107), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(583), + [272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(550), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(640), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(639), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(637), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(636), + [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(617), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(120), + [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(581), + [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(123), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(566), + [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(127), + [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(533), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(133), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(554), + [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(134), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(603), + [350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(136), + [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(635), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__gen_exp_arguments, 1), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__gen_exp_arguments, 2), + [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted_argument, 1), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2), SHIFT_REPEAT(291), + [409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2), SHIFT_REPEAT(234), + [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2), + [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2), SHIFT_REPEAT(197), + [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2), SHIFT_REPEAT(195), + [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2), SHIFT_REPEAT(297), + [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(241), + [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(209), + [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(165), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted_argument, 1), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(291), + [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(234), + [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(196), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(488), + [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(247), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(200), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_element, 1), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(503), + [531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(256), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(206), + [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(505), + [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(285), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_argument_repeat1, 2), SHIFT_REPEAT(207), + [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(520), + [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(254), + [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_element_repeat1, 2), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_element_repeat1, 2), SHIFT_REPEAT(208), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 1), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 1), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(499), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(218), + [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), SHIFT_REPEAT(613), + [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_repeat1, 2), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 1), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), + [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(233), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(233), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_exp, 4), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_exp, 4), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 5), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 5), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cache_var, 5), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cache_var, 5), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paren_argument, 3), + [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paren_argument, 3), + [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 3), + [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 3), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1), + [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_sequence, 1), + [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_exp, 3), + [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_exp, 3), + [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paren_argument, 2), + [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paren_argument, 2), + [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_argument, 2), + [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_argument, 2), + [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_var, 4), + [648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_var, 4), + [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_ref, 1), + [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_ref, 1), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 3), + [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 3), + [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 3), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 3), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 5), + [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 5), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endblock_command, 5), + [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endblock_command, 5), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 6), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 6), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 7), + [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 7), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__quoted_text_repeat1, 1), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_text_repeat1, 1), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 3), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 3), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 4), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 4), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 5), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 5), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endblock_command, 4), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endblock_command, 4), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endmacro_command, 4), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endmacro_command, 4), + [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 4), + [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 4), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 4), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 4), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 4), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 4), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 5), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 5), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_command, 5), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_command, 5), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endblock_command, 3), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endblock_command, 3), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 2), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 2), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 3), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 3), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endwhile_command, 3), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endwhile_command, 3), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endforeach_command, 3), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endforeach_command, 3), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 4), + [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 4), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 5), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 5), + [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endfunction_command, 5), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endfunction_command, 5), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_endif_command, 3), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_endif_command, 3), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 4), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 4), + [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_condition, 3), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_condition, 3), + [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 4), + [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 4), + [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_normal_command, 4), + [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_normal_command, 4), + [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_loop, 3), + [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_loop, 3), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 3), + [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 3), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_command, 5), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_command, 5), + [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_def, 3), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_def, 3), + [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(283), + [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(283), + [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elseif_command, 5), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elseif_command, 5), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_def, 3), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_def, 3), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_def, 3), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_def, 3), + [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 1), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 1), + [848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(305), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(305), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__gen_exp_arguments_repeat1, 2), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_command, 4), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_command, 4), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(476), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(476), + [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 4), + [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 4), + [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 5), + [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 5), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__quoted_text_repeat1, 2), + [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_text_repeat1, 2), SHIFT_REPEAT(479), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_text_repeat1, 2), SHIFT_REPEAT(479), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 5), + [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 5), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 4), + [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 4), + [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_command, 4), + [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_command, 4), + [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_command, 4), + [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_command, 4), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_command, 5), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_command, 5), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_command, 5), + [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_command, 5), + [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_command, 5), + [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_command, 5), + [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(491), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_text_repeat1, 2), SHIFT_REPEAT(491), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), + [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_command_repeat1, 2), SHIFT_REPEAT(532), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__gen_exp_content, 1), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__gen_exp_content, 2), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1643] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token_bracket_argument = 0, + ts_external_token_bracket_comment = 1, + ts_external_token_line_comment = 2, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token_bracket_argument] = sym_bracket_argument, + [ts_external_token_bracket_comment] = sym_bracket_comment, + [ts_external_token_line_comment] = sym_line_comment, +}; + +static const bool ts_external_scanner_states[4][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token_bracket_argument] = true, + [ts_external_token_bracket_comment] = true, + [ts_external_token_line_comment] = true, + }, + [2] = { + [ts_external_token_bracket_comment] = true, + [ts_external_token_line_comment] = true, + }, + [3] = { + [ts_external_token_bracket_argument] = true, + }, }; #ifdef __cplusplus @@ -26448,11 +20916,15 @@ bool tree_sitter_cmake_external_scanner_scan(void *, TSLexer *, const bool *); unsigned tree_sitter_cmake_external_scanner_serialize(void *, char *); void tree_sitter_cmake_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 -#define extern __declspec(dllexport) +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) #endif -extern const TSLanguage *tree_sitter_cmake(void) { +TS_PUBLIC const TSLanguage *tree_sitter_cmake() { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/vendored_parsers/tree-sitter-cmake/src/scanner.cc b/vendored_parsers/tree-sitter-cmake/src/scanner.c similarity index 84% rename from vendored_parsers/tree-sitter-cmake/src/scanner.cc rename to vendored_parsers/tree-sitter-cmake/src/scanner.c index 886bb3317..d03a91138 100644 --- a/vendored_parsers/tree-sitter-cmake/src/scanner.cc +++ b/vendored_parsers/tree-sitter-cmake/src/scanner.c @@ -1,16 +1,19 @@ -#include #include +#include -namespace { enum TokenType { BRACKET_ARGUMENT, BRACKET_COMMENT, LINE_COMMENT }; -void skip(TSLexer *lexer) { lexer->advance(lexer, true); } -void advance(TSLexer *lexer) { lexer->advance(lexer, false); } -void skip_wspace(TSLexer *lexer) { - while (std::iswspace(lexer->lookahead)) { + +static void skip(TSLexer *lexer) { lexer->advance(lexer, true); } + +static void advance(TSLexer *lexer) { lexer->advance(lexer, false); } + +static void skip_wspace(TSLexer *lexer) { + while (iswspace(lexer->lookahead)) { skip(lexer); } } -bool is_bracket_argument(TSLexer *lexer) { + +static bool is_bracket_argument(TSLexer *lexer) { if (lexer->lookahead != '[') { return false; } @@ -45,7 +48,8 @@ bool is_bracket_argument(TSLexer *lexer) { } return false; } -bool scan(void *payload, TSLexer *lexer, bool const *valid_symbols) { + +static bool scan(void *payload, TSLexer *lexer, bool const *valid_symbols) { skip_wspace(lexer); if (lexer->lookahead != '#' && valid_symbols[BRACKET_ARGUMENT]) { @@ -72,19 +76,20 @@ bool scan(void *payload, TSLexer *lexer, bool const *valid_symbols) { return false; } -} // namespace -extern "C" { void *tree_sitter_cmake_external_scanner_create() { return NULL; } + void tree_sitter_cmake_external_scanner_destroy(void *payload) {} + unsigned tree_sitter_cmake_external_scanner_serialize(void *payload, char *buffer) { return 0; } + void tree_sitter_cmake_external_scanner_deserialize(void *payload, char const *buffer, unsigned length) {} + bool tree_sitter_cmake_external_scanner_scan(void *payload, TSLexer *lexer, bool const *valid_symbols) { return scan(payload, lexer, valid_symbols); } -} diff --git a/vendored_parsers/tree-sitter-cmake/src/tree_sitter/alloc.h b/vendored_parsers/tree-sitter-cmake/src/tree_sitter/alloc.h new file mode 100644 index 000000000..1f4466d75 --- /dev/null +++ b/vendored_parsers/tree-sitter-cmake/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t); +extern void *(*ts_current_calloc)(size_t, size_t); +extern void *(*ts_current_realloc)(void *, size_t); +extern void (*ts_current_free)(void *); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/vendored_parsers/tree-sitter-cmake/src/tree_sitter/array.h b/vendored_parsers/tree-sitter-cmake/src/tree_sitter/array.h new file mode 100644 index 000000000..15a3b233b --- /dev/null +++ b/vendored_parsers/tree-sitter-cmake/src/tree_sitter/array.h @@ -0,0 +1,290 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(default : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/vendored_parsers/tree-sitter-cmake/src/tree_sitter/parser.h b/vendored_parsers/tree-sitter-cmake/src/tree_sitter/parser.h index 2b14ac104..17b4fde98 100644 --- a/vendored_parsers/tree-sitter-cmake/src/tree_sitter/parser.h +++ b/vendored_parsers/tree-sitter-cmake/src/tree_sitter/parser.h @@ -13,9 +13,8 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -typedef uint16_t TSStateId; - #ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; @@ -130,9 +129,16 @@ struct TSLanguage { * Lexer Macros */ +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + #define START_LEXER() \ bool result = false; \ bool skip = false; \ + UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -166,7 +172,7 @@ struct TSLanguage { * Parse Table Macros */ -#define SMALL_STATE(id) id - LARGE_STATE_COUNT +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) #define STATE(id) id @@ -176,7 +182,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value \ + .state = (state_value) \ } \ }} @@ -184,7 +190,7 @@ struct TSLanguage { {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = state_value, \ + .state = (state_value), \ .repetition = true \ } \ }} diff --git a/vendored_parsers/tree-sitter-cmake/test/corpus/block_commands.txt b/vendored_parsers/tree-sitter-cmake/test/corpus/block_commands.txt new file mode 100644 index 000000000..8798c3a65 --- /dev/null +++ b/vendored_parsers/tree-sitter-cmake/test/corpus/block_commands.txt @@ -0,0 +1,195 @@ +====================================================== +Function definition with no arguments [block_commands] +====================================================== + +function(fn) +endfunction() + +--- +(source_file + (function_def + (function_command + (function) + (argument_list + (argument + (unquoted_argument) + ) + ) + ) + (body) + (endfunction_command + (endfunction) + ) + ) +) + +======================================================== +Function definition with many arguments [block_commands] +======================================================== + +function(fn arg1 arg2 arg3) +endfunction() + +--- +(source_file + (function_def + (function_command + (function) + (argument_list + (argument + (unquoted_argument) + ) + (argument + (unquoted_argument) + ) + (argument + (unquoted_argument) + ) + (argument + (unquoted_argument) + ) + ) + ) + (body) + (endfunction_command + (endfunction) + ) + ) +) + +=================================================== +Macro definition with no arguments [block_commands] +=================================================== + +macro(fn) +endmacro() + +--- +(source_file + (macro_def + (macro_command + (macro) + (argument_list + (argument + (unquoted_argument) + ) + ) + ) + (body) + (endmacro_command + (endmacro) + ) + ) +) + +======================================================== +macro definition with many arguments [block_commands] +======================================================== + +macro(fn arg1 arg2 arg3) +endmacro() + +--- +(source_file + (macro_def + (macro_command + (macro) + (argument_list + (argument + (unquoted_argument) + ) + (argument + (unquoted_argument) + ) + (argument + (unquoted_argument) + ) + (argument + (unquoted_argument) + ) + ) + ) + (body) + (endmacro_command + (endmacro) + ) + ) +) + +============================ +Block scope [block_commands] +============================ + +block(SCOPE_FOR POLICIES VARIABLES PROPAGATE var) +endblock() + +--- +(source_file + (block_def + (block_command + (block) + (argument_list + (argument + (unquoted_argument) + ) + (argument + (unquoted_argument) + ) + (argument + (unquoted_argument) + ) + (argument + (unquoted_argument) + ) + (argument + (unquoted_argument) + ) + ) + ) + (body) + (endblock_command + (endblock) + ) + ) +) + +================================ +Nested function [block_commands] +================================ +function(a) + function(b) + endfunction() +endfunction() + +--- +(source_file + (function_def + (function_command + (function) + (argument_list + (argument + (unquoted_argument) + ) + ) + ) + (body + (function_def + (function_command + (function) + (argument_list + (argument + (unquoted_argument) + ) + ) + ) + (body) + (endfunction_command + (endfunction) + ) + ) + ) + (endfunction_command + (endfunction) + ) + ) +) diff --git a/vendored_parsers/tree-sitter-cmake/corpus/bracket_argument.txt b/vendored_parsers/tree-sitter-cmake/test/corpus/bracket_argument.txt similarity index 79% rename from vendored_parsers/tree-sitter-cmake/corpus/bracket_argument.txt rename to vendored_parsers/tree-sitter-cmake/test/corpus/bracket_argument.txt index ad24c5b30..aa93391cc 100644 --- a/vendored_parsers/tree-sitter-cmake/corpus/bracket_argument.txt +++ b/vendored_parsers/tree-sitter-cmake/test/corpus/bracket_argument.txt @@ -8,7 +8,9 @@ message([[]]) (source_file (normal_command (identifier) - (argument (bracket_argument)) + (argument_list + (argument (bracket_argument)) + ) ) ) @@ -22,7 +24,9 @@ message([[an argument]]) (source_file (normal_command (identifier) - (argument (bracket_argument)) + (argument_list + (argument (bracket_argument)) + ) ) ) @@ -36,8 +40,10 @@ message([[first argument]] [[second argument]]) (source_file (normal_command (identifier) - (argument (bracket_argument)) - (argument (bracket_argument)) + (argument_list + (argument (bracket_argument)) + (argument (bracket_argument)) + ) ) ) @@ -54,8 +60,10 @@ message( (source_file (normal_command (identifier) - (argument (bracket_argument)) - (argument (bracket_argument)) + (argument_list + (argument (bracket_argument)) + (argument (bracket_argument)) + ) ) ) @@ -71,7 +79,9 @@ with line break (source_file (normal_command (identifier) - (argument (bracket_argument)) + (argument_list + (argument (bracket_argument)) + ) ) ) @@ -87,7 +97,9 @@ with line break ]==] (source_file (normal_command (identifier) - (argument (bracket_argument)) + (argument_list + (argument (bracket_argument)) + ) ) ) diff --git a/vendored_parsers/tree-sitter-cmake/corpus/comment.txt b/vendored_parsers/tree-sitter-cmake/test/corpus/comment.txt similarity index 75% rename from vendored_parsers/tree-sitter-cmake/corpus/comment.txt rename to vendored_parsers/tree-sitter-cmake/test/corpus/comment.txt index 1a973e4db..1c09552e6 100644 --- a/vendored_parsers/tree-sitter-cmake/corpus/comment.txt +++ b/vendored_parsers/tree-sitter-cmake/test/corpus/comment.txt @@ -19,10 +19,12 @@ message(STATUS #[[Some comment]] "comment is next" #[[Some comment]]) (source_file (normal_command (identifier) - (argument (unquoted_argument)) - (bracket_comment) - (argument (quoted_argument (quoted_element))) - (bracket_comment) + (argument_list + (argument (unquoted_argument)) + (bracket_comment) + (argument (quoted_argument (quoted_element))) + (bracket_comment) + ) ) ) @@ -50,9 +52,11 @@ Second #Some other line comment (source_file (normal_command (identifier) - (argument (unquoted_argument)) - (line_comment) - (argument (unquoted_argument)) - (line_comment) + (argument_list + (argument (unquoted_argument)) + (line_comment) + (argument (unquoted_argument)) + (line_comment) + ) ) ) diff --git a/vendored_parsers/tree-sitter-cmake/test/corpus/condition.txt b/vendored_parsers/tree-sitter-cmake/test/corpus/condition.txt new file mode 100644 index 000000000..8d4e89b32 --- /dev/null +++ b/vendored_parsers/tree-sitter-cmake/test/corpus/condition.txt @@ -0,0 +1,304 @@ +==================== +Empty if [condition] +==================== +if ( cond ) +endif() + +--- + +(source_file + (if_condition + (if_command + (if) + (argument_list + (argument (unquoted_argument)) + ) + ) + (body) + (endif_command (endif)) + ) +) + +=========================== +Empty if elseif [condition] +=========================== +if(cond) +elseif(cond) +endif() + +--- + +(source_file + (if_condition + (if_command + (if) + (argument_list + (argument (unquoted_argument)) + ) + ) + (body) + (elseif_command + (elseif) + (argument_list + (argument (unquoted_argument)) + ) + ) + (body) + (endif_command (endif)) + ) +) + +================================ +Empty if elseif else [condition] +================================ +if(cond) +elseif(cond) +else() +endif() + +--- + +(source_file + (if_condition + (if_command + (if) + (argument_list + (argument (unquoted_argument)) + ) + ) + (body) + (elseif_command + (elseif) + (argument_list + (argument (unquoted_argument)) + ) + ) + (body) + (else_command (else)) + (body) + (endif_command (endif)) + ) +) + +============================================ +If with many command invocations [condition] +============================================ +if(cond) + message(STATUS) + message(STATUS) +endif() + +--- + +(source_file + (if_condition + (if_command + (if) + (argument_list + (argument (unquoted_argument)) + ) + ) + (body + (normal_command + (identifier) + (argument_list + (argument (unquoted_argument)) + ) + ) + (normal_command + (identifier) + (argument_list + (argument (unquoted_argument)) + ) + ) + ) + (endif_command (endif)) + ) +) + +============================================================== +If, elseof, and else with many command invocations [condition] +============================================================== +if(cond) + message(STATUS) + message(STATUS) +elseif(cond) + message(STATUS) + message(STATUS) +else(cond) + message(STATUS) + message(STATUS) +endif() + +--- + +(source_file + (if_condition + (if_command + (if) + (argument_list + (argument (unquoted_argument)) + ) + ) + (body + (normal_command + (identifier) + (argument_list + (argument (unquoted_argument)) + ) + ) + (normal_command + (identifier) + (argument_list + (argument (unquoted_argument)) + ) + ) + ) + (elseif_command + (elseif) + (argument_list + (argument (unquoted_argument)) + ) + ) + (body + (normal_command + (identifier) + (argument_list + (argument (unquoted_argument)) + ) + ) + (normal_command + (identifier) + (argument_list + (argument (unquoted_argument)) + ) + ) + ) + (else_command + (else) + (argument_list + (argument (unquoted_argument)) + ) + ) + (body + (normal_command + (identifier) + (argument_list + (argument (unquoted_argument)) + ) + ) + (normal_command + (identifier) + (argument_list + (argument (unquoted_argument)) + ) + ) + ) + (endif_command (endif)) + ) +) + + +====================================== +Condition with parentheses [condition] +====================================== +if((A AND B) OR C) +endif() +--- +(source_file + (if_condition + (if_command + (if) + (argument_list + (argument (unquoted_argument)) + (argument (unquoted_argument)) + (argument (unquoted_argument)) + (argument (unquoted_argument)) + (argument (unquoted_argument)) + ) + ) + (body) + (endif_command (endif)) + ) +) + +============================================== +Condition with not and parentheses [condition] +============================================== +if(NOT (A AND B) OR C) +else(NOT (A AND B) OR C) +endif(NOT (A AND B) OR C) +--- +(source_file + (if_condition + (if_command + (if) + (argument_list + (argument (unquoted_argument)) + (argument (unquoted_argument)) + (argument (unquoted_argument)) + (argument (unquoted_argument)) + (argument (unquoted_argument)) + (argument (unquoted_argument)) + ) + ) + (body) + (else_command + (else) + (argument_list + (argument (unquoted_argument)) + (argument (unquoted_argument)) + (argument (unquoted_argument)) + (argument (unquoted_argument)) + (argument (unquoted_argument)) + (argument (unquoted_argument)) + ) + ) + (body) + (endif_command + (endif) + (argument_list + (argument (unquoted_argument)) + (argument (unquoted_argument)) + (argument (unquoted_argument)) + (argument (unquoted_argument)) + (argument (unquoted_argument)) + (argument (unquoted_argument)) + ) + ) + ) +) + +============================ +Nested condition [condition] +============================ +if(A) + if(A) + endif() +endif() + +--- + +(source_file + (if_condition + (if_command + (if) + (argument_list + (argument (unquoted_argument)) + ) + ) + (body + (if_condition + (if_command + (if) + (argument_list + (argument (unquoted_argument)) + ) + ) + (body) + (endif_command (endif)) + ) + ) + (endif_command (endif)) + ) +) diff --git a/vendored_parsers/tree-sitter-cmake/test/corpus/escape_sequence.txt b/vendored_parsers/tree-sitter-cmake/test/corpus/escape_sequence.txt new file mode 100644 index 000000000..8988f1b55 --- /dev/null +++ b/vendored_parsers/tree-sitter-cmake/test/corpus/escape_sequence.txt @@ -0,0 +1,25 @@ +======================================== +Escape sequence of "\;" [escape_sequence] +========================================= + +set(var "It is \; and \"") + +--- + +(source_file + (normal_command + (identifier) + (argument_list + (argument + (unquoted_argument)) + (argument + (quoted_argument + (quoted_element + (escape_sequence) + (escape_sequence) + ) + ) + ) + ) + ) +) diff --git a/vendored_parsers/tree-sitter-cmake/test/corpus/foreach.txt b/vendored_parsers/tree-sitter-cmake/test/corpus/foreach.txt new file mode 100644 index 000000000..b4177ae6d --- /dev/null +++ b/vendored_parsers/tree-sitter-cmake/test/corpus/foreach.txt @@ -0,0 +1,136 @@ +================================== +Empty foreach loop [foreach] +================================== + +foreach(var) +endforeach() + +--- + +(source_file + (foreach_loop + (foreach_command + (foreach) + (argument_list + (argument (unquoted_argument)) + ) + ) + (body) + (endforeach_command (endforeach)) + ) +) + +=============================================================== +Empty foreach loop with one argument endforeach [foreach] +=============================================================== + +foreach(var) +endforeach(var) + +--- + +(source_file + (foreach_loop + (foreach_command + (foreach) + (argument_list + (argument (unquoted_argument)) + ) + ) + (body) + (endforeach_command + (endforeach) + (argument (unquoted_argument)) + ) + ) +) + +================================= +Uppercase foreach [foreach] +================================= + +FOREACH(var) +ENDFOREACH() + +--- + +(source_file + (foreach_loop + (foreach_command + (foreach) + (argument_list + (argument (unquoted_argument)) + ) + ) + (body) + (endforeach_command (endforeach)) + ) +) + +================================== +Mixed case foreach [foreach] +================================== + +forEach(var) +endForEach() + +--- + +(source_file + (foreach_loop + (foreach_command + (foreach) + (argument_list + (argument (unquoted_argument)) + ) + ) + (body) + (endforeach_command (endforeach)) + ) +) + +================================== +Empty IN [foreach] +================================== + +foreach(var IN) +endforeach() + +--- + +(source_file + (foreach_loop + (foreach_command + (foreach) + (argument_list + (argument (unquoted_argument)) + (argument (unquoted_argument)) + ) + ) + (body) + (endforeach_command (endforeach)) + ) +) + +================================== +Empty RANGE [foreach] +================================== + +foreach(var RANGE) +endforeach() + +--- + +(source_file + (foreach_loop + (foreach_command + (foreach) + (argument_list + (argument (unquoted_argument)) + (argument (unquoted_argument)) + ) + ) + (body) + (endforeach_command (endforeach)) + ) +) diff --git a/vendored_parsers/tree-sitter-cmake/corpus/function_calls.txt b/vendored_parsers/tree-sitter-cmake/test/corpus/function_calls.txt similarity index 59% rename from vendored_parsers/tree-sitter-cmake/corpus/function_calls.txt rename to vendored_parsers/tree-sitter-cmake/test/corpus/function_calls.txt index e7b758a0f..3ce5c2a3d 100644 --- a/vendored_parsers/tree-sitter-cmake/corpus/function_calls.txt +++ b/vendored_parsers/tree-sitter-cmake/test/corpus/function_calls.txt @@ -7,12 +7,14 @@ add_custom_target(OUTPUT somefile) --- (source_file - (normal_command - (identifier) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - ) - ) + (normal_command + (identifier) + (argument_list + (argument (unquoted_argument)) + (argument (unquoted_argument)) + ) + ) +) ================================================ add_custom_target with new line [function_calls] @@ -24,9 +26,11 @@ add_custom_target( --- (source_file - (normal_command - (identifier) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - ) - ) + (normal_command + (identifier) + (argument_list + (argument (unquoted_argument)) + (argument (unquoted_argument)) + ) + ) +) diff --git a/vendored_parsers/tree-sitter-cmake/corpus/gen_exp.txt b/vendored_parsers/tree-sitter-cmake/test/corpus/gen_exp.txt similarity index 55% rename from vendored_parsers/tree-sitter-cmake/corpus/gen_exp.txt rename to vendored_parsers/tree-sitter-cmake/test/corpus/gen_exp.txt index 8f0c5330f..63f8b1c52 100644 --- a/vendored_parsers/tree-sitter-cmake/corpus/gen_exp.txt +++ b/vendored_parsers/tree-sitter-cmake/test/corpus/gen_exp.txt @@ -8,9 +8,15 @@ message($<>) (source_file (normal_command (identifier) - (argument - (unquoted_argument - (gen_exp))))) + (argument_list + (argument + (unquoted_argument + (gen_exp) + ) + ) + ) + ) +) ===================================== Quoted generator expression [gen_exp] @@ -22,10 +28,17 @@ message("$<>") (source_file (normal_command (identifier) - (argument - (quoted_argument + (argument_list + (argument + (quoted_argument (quoted_element - (gen_exp)))))) + (gen_exp) + ) + ) + ) + ) + ) +) ===================== No argument [gen_exp] @@ -37,11 +50,19 @@ message($) (source_file (normal_command (identifier) - (argument - (unquoted_argument + (argument_list + (argument + (unquoted_argument (gen_exp (argument - (unquoted_argument))))))) + (unquoted_argument) + ) + ) + ) + ) + ) + ) +) ============================================ No argument with superfluous colon [gen_exp] @@ -53,11 +74,19 @@ message($) (source_file (normal_command (identifier) - (argument - (unquoted_argument - (gen_exp - (argument - (unquoted_argument))))))) + (argument_list + (argument + (unquoted_argument + (gen_exp + (argument + (unquoted_argument) + ) + ) + ) + ) + ) + ) +) ====================== One argument [gen_exp] @@ -69,13 +98,21 @@ message($) (source_file (normal_command (identifier) - (argument - (unquoted_argument + (argument_list + (argument + (unquoted_argument (gen_exp (argument - (unquoted_argument)) + (unquoted_argument)) (argument - (unquoted_argument))))))) + (unquoted_argument) + ) + ) + ) + ) + ) + ) +) ======================= Two arguments [gen_exp] @@ -87,12 +124,20 @@ message($) (source_file (normal_command (identifier) - (argument - (unquoted_argument - (gen_exp - (argument + (argument_list + (argument + (unquoted_argument + (gen_exp + (argument (unquoted_argument)) - (argument + (argument (unquoted_argument)) - (argument - (unquoted_argument))))))) + (argument + (unquoted_argument) + ) + ) + ) + ) + ) + ) +) diff --git a/vendored_parsers/tree-sitter-cmake/corpus/message.txt b/vendored_parsers/tree-sitter-cmake/test/corpus/message.txt similarity index 70% rename from vendored_parsers/tree-sitter-cmake/corpus/message.txt rename to vendored_parsers/tree-sitter-cmake/test/corpus/message.txt index 3548b5e9d..dfb37608d 100644 --- a/vendored_parsers/tree-sitter-cmake/corpus/message.txt +++ b/vendored_parsers/tree-sitter-cmake/test/corpus/message.txt @@ -7,10 +7,10 @@ message() --- (source_file - (normal_command - (identifier) - ) - ) + (normal_command + (identifier) + ) +) ================================= No argument with spaces [message] @@ -21,10 +21,11 @@ message( ) --- (source_file - (normal_command - (identifier) - ) - ) + (normal_command + (identifier) + (argument_list) + ) +) =============================================== Message without argument with newline [message] @@ -37,10 +38,11 @@ message( --- (source_file - (normal_command - (identifier) - ) - ) + (normal_command + (identifier) + (argument_list) + ) +) ================================================== Message with STATUS and bracket argument [message] @@ -53,8 +55,10 @@ message(STATUS [=[Some argument ]==] ]=] ) (source_file (normal_command (identifier) - (argument (unquoted_argument)) - (argument (bracket_argument)) + (argument_list + (argument (unquoted_argument)) + (argument (bracket_argument)) + ) ) ) @@ -69,12 +73,14 @@ message(STATUS --- (source_file - (normal_command - (identifier) - (argument (unquoted_argument)) - (argument (bracket_argument)) - ) - ) + (normal_command + (identifier) + (argument_list + (argument (unquoted_argument)) + (argument (bracket_argument)) + ) + ) +) ====================================================== Message with STATUS and an unquoted argument [message] @@ -87,7 +93,9 @@ message(STATUS argument) (source_file (normal_command (identifier) - (argument (unquoted_argument)) - (argument (unquoted_argument)) + (argument_list + (argument (unquoted_argument)) + (argument (unquoted_argument)) + ) ) ) diff --git a/vendored_parsers/tree-sitter-cmake/corpus/parentheses.txt b/vendored_parsers/tree-sitter-cmake/test/corpus/parentheses.txt similarity index 68% rename from vendored_parsers/tree-sitter-cmake/corpus/parentheses.txt rename to vendored_parsers/tree-sitter-cmake/test/corpus/parentheses.txt index 2084724de..542c5bdcf 100644 --- a/vendored_parsers/tree-sitter-cmake/corpus/parentheses.txt +++ b/vendored_parsers/tree-sitter-cmake/test/corpus/parentheses.txt @@ -6,8 +6,10 @@ message(STATUS (TEST)) (source_file (normal_command (identifier) - (argument (unquoted_argument)) - (argument (unquoted_argument)) + (argument_list + (argument (unquoted_argument)) + (argument (unquoted_argument)) + ) ) ) @@ -19,8 +21,11 @@ message(STATUS (TEST) (source_file (normal_command (identifier) - (argument (unquoted_argument)) - (argument (unquoted_argument)) (MISSING ")") + (argument_list + (argument (unquoted_argument)) + (argument (unquoted_argument)) + ) + (MISSING ")") ) ) @@ -32,8 +37,11 @@ message(STATUS ((TEST)) (source_file (normal_command (identifier) - (argument (unquoted_argument)) - (argument (unquoted_argument)) (MISSING ")") + (argument_list + (argument (unquoted_argument)) + (argument (unquoted_argument)) + ) + (MISSING ")") ) ) @@ -45,8 +53,10 @@ message(STATUS (TEST SECOND_TEST)) (source_file (normal_command (identifier) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - (argument (unquoted_argument)) + (argument_list + (argument (unquoted_argument)) + (argument (unquoted_argument)) + (argument (unquoted_argument)) + ) ) ) diff --git a/vendored_parsers/tree-sitter-cmake/corpus/quoted_argument.txt b/vendored_parsers/tree-sitter-cmake/test/corpus/quoted_argument.txt similarity index 53% rename from vendored_parsers/tree-sitter-cmake/corpus/quoted_argument.txt rename to vendored_parsers/tree-sitter-cmake/test/corpus/quoted_argument.txt index 243ef301e..a8504b76e 100644 --- a/vendored_parsers/tree-sitter-cmake/corpus/quoted_argument.txt +++ b/vendored_parsers/tree-sitter-cmake/test/corpus/quoted_argument.txt @@ -6,11 +6,13 @@ message("") --- (source_file - (normal_command - (identifier) - (argument (quoted_argument)) - ) - ) + (normal_command + (identifier) + (argument_list + (argument (quoted_argument)) + ) + ) +) ===================================== One quoted argument [quoted_argument] @@ -20,11 +22,13 @@ message("An argument") --- (source_file - (normal_command - (identifier) - (argument (quoted_argument (quoted_element))) - ) - ) + (normal_command + (identifier) + (argument_list + (argument (quoted_argument (quoted_element))) + ) + ) +) ====================================== Two quoted arguments [quoted_argument] @@ -34,12 +38,14 @@ message("First argument" "Second argument") --- (source_file - (normal_command - (identifier) - (argument (quoted_argument (quoted_element))) - (argument (quoted_argument (quoted_element))) - ) - ) + (normal_command + (identifier) + (argument_list + (argument (quoted_argument (quoted_element))) + (argument (quoted_argument (quoted_element))) + ) + ) +) =================================================== A quoted argument with line break [quoted_argument] @@ -50,11 +56,13 @@ with line break") --- (source_file - (normal_command - (identifier) - (argument (quoted_argument (quoted_element))) - ) - ) + (normal_command + (identifier) + (argument_list + (argument (quoted_argument (quoted_element))) + ) + ) +) ======================================== One variable reference [quoted_argument] @@ -64,17 +72,19 @@ message("${var}") --- (source_file - (normal_command - (identifier) - (argument - (quoted_argument - (quoted_element - (variable_ref (normal_var (variable))) + (normal_command + (identifier) + (argument_list + (argument + (quoted_argument + (quoted_element + (variable_ref (normal_var (variable))) + ) + ) + ) ) - ) ) - ) - ) +) ========================================= Two Variable references [quoted_argument] @@ -84,18 +94,20 @@ message("${var} ${var}") --- (source_file - (normal_command - (identifier) - (argument - (quoted_argument - (quoted_element - (variable_ref (normal_var (variable))) - (variable_ref (normal_var (variable))) + (normal_command + (identifier) + (argument_list + (argument + (quoted_argument + (quoted_element + (variable_ref (normal_var (variable))) + (variable_ref (normal_var (variable))) + ) + ) + ) ) - ) ) - ) - ) +) ====================================================================== Variable reference inside another variable reference [quoted_argument] @@ -105,17 +117,19 @@ message("${var_${var}}") --- (source_file - (normal_command - (identifier) - (argument - (quoted_argument - (quoted_element - (variable_ref (normal_var (variable (variable_ref (normal_var (variable)))))) + (normal_command + (identifier) + (argument_list + (argument + (quoted_argument + (quoted_element + (variable_ref (normal_var (variable (variable_ref (normal_var (variable)))))) + ) + ) + ) ) - ) ) - ) - ) +) ====================================================================== Lookalike bracket comment inside quoted argument [quoted_argument] @@ -125,17 +139,19 @@ message("${var_${var}} #[[comment]]") --- (source_file - (normal_command - (identifier) - (argument - (quoted_argument - (quoted_element - (variable_ref (normal_var (variable (variable_ref (normal_var (variable)))))) + (normal_command + (identifier) + (argument_list + (argument + (quoted_argument + (quoted_element + (variable_ref (normal_var (variable (variable_ref (normal_var (variable)))))) + ) + ) + ) ) - ) ) - ) - ) +) ====================================================================== Lookalike line comment inside quoted argument [quoted_argument] @@ -145,17 +161,19 @@ message("${var_${var}} #comment") --- (source_file - (normal_command - (identifier) - (argument - (quoted_argument - (quoted_element - (variable_ref (normal_var (variable (variable_ref (normal_var (variable)))))) + (normal_command + (identifier) + (argument_list + (argument + (quoted_argument + (quoted_element + (variable_ref (normal_var (variable (variable_ref (normal_var (variable)))))) + ) + ) + ) ) - ) ) - ) - ) +) =========================================================== Lookalike variable inside quoted argument [quoted_argument] @@ -165,12 +183,14 @@ message("$var") --- (source_file - (normal_command - (identifier) - (argument - (quoted_argument - (quoted_element) - ) + (normal_command + (identifier) + (argument_list + (argument + (quoted_argument + (quoted_element) + ) + ) + ) ) - ) - ) +) diff --git a/vendored_parsers/tree-sitter-cmake/corpus/unquoted_argument.txt b/vendored_parsers/tree-sitter-cmake/test/corpus/unquoted_argument.txt similarity index 51% rename from vendored_parsers/tree-sitter-cmake/corpus/unquoted_argument.txt rename to vendored_parsers/tree-sitter-cmake/test/corpus/unquoted_argument.txt index 8b269920e..f0316adc5 100644 --- a/vendored_parsers/tree-sitter-cmake/corpus/unquoted_argument.txt +++ b/vendored_parsers/tree-sitter-cmake/test/corpus/unquoted_argument.txt @@ -7,11 +7,13 @@ message(STATUS) --- (source_file - (normal_command - (identifier) - (argument (unquoted_argument)) - ) - ) + (normal_command + (identifier) + (argument_list + (argument (unquoted_argument)) + ) + ) +) ========================================================= Command invocation with two arguments [unquoted_argument] @@ -22,12 +24,14 @@ message(STATUS Hello) --- (source_file - (normal_command - (identifier) - (argument (unquoted_argument)) - (argument (unquoted_argument)) - ) - ) + (normal_command + (identifier) + (argument_list + (argument (unquoted_argument)) + (argument (unquoted_argument)) + ) + ) +) =============================================================== Command invocations with leading seperation [unquoted_argument] @@ -39,15 +43,20 @@ STATUS) --- (source_file - (normal_command - (identifier) - (argument (unquoted_argument)) - ) - (normal_command - (identifier) - (argument (unquoted_argument)) - ) + (normal_command + (identifier) + (argument_list + (argument (unquoted_argument)) + ) + ) + (normal_command + (identifier) + (argument_list + (argument (unquoted_argument)) + ) + ) ) + ============================================================ Command invocations with escape sequence [unquoted_argument] ============================================================ @@ -58,15 +67,19 @@ STATUS) --- (source_file - (normal_command - (identifier) - (argument (unquoted_argument)) - ) - (normal_command - (identifier) - (argument (unquoted_argument)) - ) - ) + (normal_command + (identifier) + (argument_list + (argument (unquoted_argument)) + ) + ) + (normal_command + (identifier) + (argument_list + (argument (unquoted_argument)) + ) + ) +) ======================================== Variable referencing [unquoted_argument] @@ -75,15 +88,17 @@ message(${var_ref}) --- (source_file - (normal_command - (identifier) - (argument - (unquoted_argument - (variable_ref (normal_var (variable))) - ) + (normal_command + (identifier) + (argument_list + (argument + (unquoted_argument + (variable_ref (normal_var (variable))) + ) + ) + ) ) - ) - ) +) ==================================================================== Variable referencing inside variable referencing [unquoted_argument] @@ -92,15 +107,17 @@ message(${var_${var_ref}}) --- (source_file - (normal_command - (identifier) - (argument - (unquoted_argument - (variable_ref (normal_var (variable (variable_ref (normal_var (variable)))))) - ) + (normal_command + (identifier) + (argument_list + (argument + (unquoted_argument + (variable_ref (normal_var (variable (variable_ref (normal_var (variable)))))) + ) + ) + ) ) - ) - ) +) =============================================================== Lookalike variable inside unquoted argument [unquoted_argument] @@ -110,10 +127,30 @@ message($var) --- (source_file - (normal_command - (identifier) - (argument - (unquoted_argument) + (normal_command + (identifier) + (argument_list + (argument + (unquoted_argument) + ) + ) + ) +) + +===================================================== +Single quote in unquoted_argument [unquoted_argument] +===================================================== + +message(hello'world) + +--- +(source_file + (normal_command + (identifier) + (argument_list + (argument + (unquoted_argument) + ) + ) ) - ) ) diff --git a/vendored_parsers/tree-sitter-cmake/corpus/while.txt b/vendored_parsers/tree-sitter-cmake/test/corpus/while.txt similarity index 76% rename from vendored_parsers/tree-sitter-cmake/corpus/while.txt rename to vendored_parsers/tree-sitter-cmake/test/corpus/while.txt index bc0c61fee..2f283d839 100644 --- a/vendored_parsers/tree-sitter-cmake/corpus/while.txt +++ b/vendored_parsers/tree-sitter-cmake/test/corpus/while.txt @@ -11,8 +11,11 @@ endwhile() (while_loop (while_command (while) - (argument (unquoted_argument)) + (argument_list + (argument (unquoted_argument)) + ) ) + (body) (endwhile_command (endwhile)) ) ) @@ -30,8 +33,11 @@ endwhile(cond) (while_loop (while_command (while) - (argument (unquoted_argument)) + (argument_list + (argument (unquoted_argument)) + ) ) + (body) (endwhile_command (endwhile) (argument (unquoted_argument))