diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000000..179cec9ba3 --- /dev/null +++ b/.prettierignore @@ -0,0 +1 @@ +shlr/rizin-shell-parser/bindings/node/index.js diff --git a/librz/core/cmd.c b/librz/core/cmd.c index e8825718a2..412f8a0da0 100644 --- a/librz/core/cmd.c +++ b/librz/core/cmd.c @@ -6180,9 +6180,15 @@ static RzCmdStatus core_cmd_tsr2cmd(RzCore *core, const char *cstr, bool split_l ts_symbols_init(core->rcmd); TSParser *parser = ts_parser_new(); - ts_parser_set_language(parser, (TSLanguage *)core->rcmd->language); + bool language_ok = ts_parser_set_language(parser, (TSLanguage *)core->rcmd->language); + rz_return_val_if_fail(language_ok, RZ_CMD_STATUS_INVALID); TSTree *tree = ts_parser_parse_string(parser, NULL, input, strlen(input)); + if (!tree) { + rz_warn_if_reached(); + return RZ_CMD_STATUS_INVALID; + } + TSNode root = ts_tree_root_node(tree); RzCmdStatus res = RZ_CMD_STATUS_INVALID; diff --git a/meson.build b/meson.build index 69ea2a2036..f0375fe13c 100644 --- a/meson.build +++ b/meson.build @@ -17,6 +17,7 @@ create_tags_rz_py = files('sys/create_tags_rz.py') syscall_preprocessing_py = files('sys/syscall_preprocessing.py') check_meson_subproject_py = files('sys/check_meson_subproject.py') git_exe_repo_py = files('sys/meson_git_wrapper.py') +tree_sitter_wrap_py = files('sys/meson_tree_sitter_generate.py') is_static_build = get_option('static_runtime') if is_static_build and get_option('default_library') != 'static' diff --git a/shlr/meson.build b/shlr/meson.build index d43bcf0fdb..6a7ceb5956 100644 --- a/shlr/meson.build +++ b/shlr/meson.build @@ -47,25 +47,7 @@ endif # new rizin shell parser -shell_parser_path = 'rizin-shell-parser' -shell_parser_files = [ - join_paths(shell_parser_path, 'src/parser.c'), - join_paths(shell_parser_path, 'src/scanner.c'), -] - -shell_parser_inc = [platform_inc, include_directories('rizin-shell-parser/src/tree_sitter')] - -libshell_parser = static_library('shell_parser', shell_parser_files, - include_directories: shell_parser_inc, - dependencies: tree_sitter_dep.partial_dependency(includes: true), - implicit_include_directories: true -) - -shell_parser_dep = declare_dependency( - link_with: libshell_parser, - include_directories: shell_parser_inc, - dependencies: tree_sitter_dep -) +subdir('rizin-shell-parser') # handle bochs dependency diff --git a/shlr/rizin-shell-parser/Cargo.toml b/shlr/rizin-shell-parser/Cargo.toml new file mode 100644 index 0000000000..e62b3e8ab3 --- /dev/null +++ b/shlr/rizin-shell-parser/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "tree-sitter-rzcmd" +description = "rzcmd grammar for the tree-sitter parsing library" +version = "0.0.1" +keywords = ["incremental", "parsing", "rzcmd"] +categories = ["parsing", "text-editors"] +repository = "https://github.com/tree-sitter/tree-sitter-javascript" +edition = "2018" +license = "MIT" + +build = "bindings/rust/build.rs" +include = [ + "bindings/rust/*", + "grammar.js", + "queries/*", + "src/*", +] + +[lib] +path = "bindings/rust/lib.rs" + +[dependencies] +tree-sitter = "0.17" + +[build-dependencies] +cc = "1.0" diff --git a/shlr/rizin-shell-parser/binding.gyp b/shlr/rizin-shell-parser/binding.gyp index eebdd2c5c9..0269bd808b 100644 --- a/shlr/rizin-shell-parser/binding.gyp +++ b/shlr/rizin-shell-parser/binding.gyp @@ -9,7 +9,7 @@ "sources": [ "src/parser.c", "src/scanner.c", - "src/binding.cc" + "bindings/node/binding.cc" ], "cflags_c": [ "-std=c99 -ggdb -O0", diff --git a/shlr/rizin-shell-parser/src/binding.cc b/shlr/rizin-shell-parser/bindings/node/binding.cc similarity index 96% rename from shlr/rizin-shell-parser/src/binding.cc rename to shlr/rizin-shell-parser/bindings/node/binding.cc index 1a9e1c12c5..a9e50ba68d 100644 --- a/shlr/rizin-shell-parser/src/binding.cc +++ b/shlr/rizin-shell-parser/bindings/node/binding.cc @@ -19,7 +19,7 @@ void Init(Local exports, Local module) { Local instance = constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); Nan::SetInternalFieldPointer(instance, 0, tree_sitter_rzcmd()); - Nan::Set(instance, Nan::New("name").ToLocalChecked(), Nan::New("r2cmd").ToLocalChecked()); + Nan::Set(instance, Nan::New("name").ToLocalChecked(), Nan::New("rzcmd").ToLocalChecked()); Nan::Set(module, Nan::New("exports").ToLocalChecked(), instance); } diff --git a/shlr/rizin-shell-parser/bindings/node/index.js b/shlr/rizin-shell-parser/bindings/node/index.js new file mode 100644 index 0000000000..952d9e074c --- /dev/null +++ b/shlr/rizin-shell-parser/bindings/node/index.js @@ -0,0 +1,19 @@ +try { + module.exports = require("../../build/Release/tree_sitter_rzcmd_binding"); +} catch (error1) { + if (error1.code !== 'MODULE_NOT_FOUND') { + throw error1; + } + try { + module.exports = require("../../build/Debug/tree_sitter_rzcmd_binding"); + } catch (error2) { + if (error2.code !== 'MODULE_NOT_FOUND') { + throw error2; + } + throw error1 + } +} + +try { + module.exports.nodeTypeInfo = require("../../src/node-types.json"); +} catch (_) {} diff --git a/shlr/rizin-shell-parser/bindings/rust/build.rs b/shlr/rizin-shell-parser/bindings/rust/build.rs new file mode 100644 index 0000000000..c6061f0995 --- /dev/null +++ b/shlr/rizin-shell-parser/bindings/rust/build.rs @@ -0,0 +1,40 @@ +fn main() { + let src_dir = std::path::Path::new("src"); + + let mut c_config = cc::Build::new(); + c_config.include(&src_dir); + c_config + .flag_if_supported("-Wno-unused-parameter") + .flag_if_supported("-Wno-unused-but-set-variable") + .flag_if_supported("-Wno-trigraphs"); + 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/shlr/rizin-shell-parser/bindings/rust/lib.rs b/shlr/rizin-shell-parser/bindings/rust/lib.rs new file mode 100644 index 0000000000..ee8bb247e9 --- /dev/null +++ b/shlr/rizin-shell-parser/bindings/rust/lib.rs @@ -0,0 +1,52 @@ +//! This crate provides rzcmd language support for the [tree-sitter][] parsing library. +//! +//! Typically, you will use the [language][language func] function to add this language to a +//! tree-sitter [Parser][], and then use the parser to parse some code: +//! +//! ``` +//! let code = ""; +//! let mut parser = tree_sitter::Parser::new(); +//! parser.set_language(tree_sitter_rzcmd::language()).expect("Error loading rzcmd grammar"); +//! let tree = parser.parse(code, None).unwrap(); +//! ``` +//! +//! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html +//! [language func]: fn.language.html +//! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html +//! [tree-sitter]: https://tree-sitter.github.io/ + +use tree_sitter::Language; + +extern "C" { + fn tree_sitter_rzcmd() -> Language; +} + +/// Get the tree-sitter [Language][] for this grammar. +/// +/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html +pub fn language() -> Language { + unsafe { tree_sitter_rzcmd() } +} + +/// The content of the [`node-types.json`][] file for this grammar. +/// +/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types +pub const NODE_TYPES: &'static str = include_str!("../../src/node-types.json"); + +// Uncomment these to include any queries that this grammar contains + +// pub const HIGHLIGHTS_QUERY: &'static str = include_str!("../../queries/highlights.scm"); +// pub const INJECTIONS_QUERY: &'static str = include_str!("../../queries/injections.scm"); +// pub const LOCALS_QUERY: &'static str = include_str!("../../queries/locals.scm"); +// pub const TAGS_QUERY: &'static str = include_str!("../../queries/tags.scm"); + +#[cfg(test)] +mod tests { + #[test] + fn test_can_load_grammar() { + let mut parser = tree_sitter::Parser::new(); + parser + .set_language(super::language()) + .expect("Error loading rzcmd language"); + } +} diff --git a/shlr/rizin-shell-parser/index.js b/shlr/rizin-shell-parser/index.js deleted file mode 100644 index ddd6a74a1f..0000000000 --- a/shlr/rizin-shell-parser/index.js +++ /dev/null @@ -1,13 +0,0 @@ -try { - module.exports = require("./build/Release/tree_sitter_rzcmd_binding"); -} catch (error) { - try { - module.exports = require("./build/Debug/tree_sitter_rzcmd_binding"); - } catch (_) { - throw error; - } -} - -try { - module.exports.nodeTypeInfo = require("./src/node-types.json"); -} catch (_) {} diff --git a/shlr/rizin-shell-parser/meson.build b/shlr/rizin-shell-parser/meson.build new file mode 100644 index 0000000000..45fa1b1eff --- /dev/null +++ b/shlr/rizin-shell-parser/meson.build @@ -0,0 +1,15 @@ +grammar_js = files('grammar.js') + +subdir('src') + +libshell_parser = static_library('shell_parser', shell_parser_files, + include_directories: shell_parser_inc, + dependencies: tree_sitter_dep.partial_dependency(includes: true), + implicit_include_directories: true +) + +shell_parser_dep = declare_dependency( + link_with: libshell_parser, + include_directories: shell_parser_inc, + dependencies: tree_sitter_dep +) \ No newline at end of file diff --git a/shlr/rizin-shell-parser/package-lock.json b/shlr/rizin-shell-parser/package-lock.json index 73f2dfc76e..fe4e1f54c8 100644 --- a/shlr/rizin-shell-parser/package-lock.json +++ b/shlr/rizin-shell-parser/package-lock.json @@ -10,9 +10,9 @@ "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==" }, "tree-sitter-cli": { - "version": "0.16.8", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.16.8.tgz", - "integrity": "sha512-gMVZ0tpSCk1DQoyrSXlRaFZ4HztyVTKqYBTXitYKHmM+mrEIznDGV70ycqsCQYDjCnE461naMViGOItDGJDIHw==", + "version": "0.19.4", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.19.4.tgz", + "integrity": "sha512-p2kxjuoQeauXBu5eE+j7c5BMCRXmc17EiAswnnWn3ieUlHXBkA0Z7vRnaCSElDR34MhZnSgqgzuuzQk0cDqCjw==", "dev": true } } diff --git a/shlr/rizin-shell-parser/package.json b/shlr/rizin-shell-parser/package.json index 2e6a3e226f..dcb48f73c5 100644 --- a/shlr/rizin-shell-parser/package.json +++ b/shlr/rizin-shell-parser/package.json @@ -2,7 +2,7 @@ "name": "tree-sitter-rzcmd", "version": "1.0.0", "description": "Tree-Sitter grammar for parsing rizin commands", - "main": "index.js", + "main": "bindings/node", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, @@ -12,6 +12,6 @@ "nan": "^2.14.0" }, "devDependencies": { - "tree-sitter-cli": "^0.16.8" + "tree-sitter-cli": "^0.19.4" } } diff --git a/shlr/rizin-shell-parser/src/grammar.json b/shlr/rizin-shell-parser/src/grammar.json index d22b385bcf..0c8b03bb6c 100644 --- a/shlr/rizin-shell-parser/src/grammar.json +++ b/shlr/rizin-shell-parser/src/grammar.json @@ -3572,6 +3572,7 @@ } ], "conflicts": [], + "precedences": [], "externals": [ { "type": "SYMBOL", diff --git a/shlr/rizin-shell-parser/src/meson.build b/shlr/rizin-shell-parser/src/meson.build new file mode 100644 index 0000000000..0171183ae0 --- /dev/null +++ b/shlr/rizin-shell-parser/src/meson.build @@ -0,0 +1,14 @@ +tree_sitter_bin = find_program('tree-sitter', required: false) +node_bin = find_program('node', required: false) +if tree_sitter_bin.found() and node_bin.found() and tree_sitter_dep.type_name() != 'internal' + parser_c = custom_target('parser_src_c', + command: [tree_sitter_wrap_py, tree_sitter_bin, '@OUTDIR@/..', '@INPUT@'], + input: [grammar_js], + output: 'parser.c', + ) +else + parser_c = files('parser.c') +endif + +shell_parser_files = [files('scanner.c'), parser_c] +shell_parser_inc = [platform_inc, include_directories('tree_sitter')] diff --git a/shlr/rizin-shell-parser/src/node-types.json b/shlr/rizin-shell-parser/src/node-types.json index 8277ce9ae6..9e85c010d8 100644 --- a/shlr/rizin-shell-parser/src/node-types.json +++ b/shlr/rizin-shell-parser/src/node-types.json @@ -331,7 +331,7 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "arged_command", @@ -6500,13 +6500,7 @@ { "type": "legacy_quoted_command", "named": true, - "fields": { - "string": { - "multiple": false, - "required": false, - "types": [] - } - } + "fields": {} }, { "type": "macro_args", diff --git a/shlr/rizin-shell-parser/src/parser.c b/shlr/rizin-shell-parser/src/parser.c index 3289e2814c..e520a534c2 100644 --- a/shlr/rizin-shell-parser/src/parser.c +++ b/shlr/rizin-shell-parser/src/parser.c @@ -5,8 +5,8 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 11 -#define STATE_COUNT 495 +#define LANGUAGE_VERSION 13 +#define STATE_COUNT 504 #define LARGE_STATE_COUNT 87 #define SYMBOL_COUNT 244 #define ALIAS_COUNT 1 @@ -14,6 +14,7 @@ #define EXTERNAL_TOKEN_COUNT 6 #define FIELD_COUNT 7 #define MAX_ALIAS_SEQUENCE_LENGTH 6 +#define PRODUCTION_ID_COUNT 20 enum { anon_sym_DQUOTE = 1, @@ -1762,19 +1763,22 @@ static const char *ts_field_names[] = { [field_string] = "string", }; -static const TSFieldMapSlice ts_field_map_slices[17] = { +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 1}, - [2] = {.index = 1, .length = 2}, - [4] = {.index = 3, .length = 2}, - [5] = {.index = 3, .length = 2}, - [6] = {.index = 5, .length = 2}, - [7] = {.index = 7, .length = 2}, - [8] = {.index = 9, .length = 1}, - [9] = {.index = 10, .length = 2}, - [10] = {.index = 12, .length = 1}, - [11] = {.index = 13, .length = 2}, - [12] = {.index = 15, .length = 3}, - [15] = {.index = 18, .length = 2}, + [2] = {.index = 0, .length = 1}, + [3] = {.index = 1, .length = 2}, + [4] = {.index = 3, .length = 1}, + [6] = {.index = 4, .length = 2}, + [7] = {.index = 4, .length = 2}, + [8] = {.index = 6, .length = 2}, + [9] = {.index = 8, .length = 2}, + [10] = {.index = 10, .length = 1}, + [11] = {.index = 11, .length = 2}, + [12] = {.index = 11, .length = 2}, + [13] = {.index = 13, .length = 1}, + [14] = {.index = 14, .length = 2}, + [15] = {.index = 16, .length = 3}, + [18] = {.index = 19, .length = 2}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1784,180 +1788,354 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_args, 0, .inherited = true}, {field_command, 0, .inherited = true}, [3] = + {field_command, 0, .inherited = true}, + [4] = {field_args, 1}, {field_command, 0}, - [5] = + [6] = {field_args, 0}, {field_command, 1}, - [7] = + [8] = {field_arg, 0}, {field_command, 1}, - [9] = - {field_string, 1}, [10] = + {field_string, 1}, + [11] = {field_args, 2}, {field_command, 0}, - [12] = - {field_name, 0}, [13] = + {field_name, 0}, + [14] = {field_command, 0}, {field_specifier, 2}, - [15] = + [16] = {field_arg, 2}, {field_command, 0}, {field_redirect_operator, 1}, - [18] = + [19] = {field_args, 3, .inherited = true}, {field_command, 3, .inherited = true}, }; -static TSSymbol ts_alias_sequences[17][MAX_ALIAS_SEQUENCE_LENGTH] = { +static TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [3] = { - [0] = sym_arg_identifier, - }, - [5] = { + [2] = { [0] = sym_cmd_identifier, }, + [5] = { + [0] = sym_arg_identifier, + }, [7] = { + [0] = sym_cmd_identifier, + }, + [9] = { [0] = alias_sym_number, }, - [13] = { + [11] = { + [0] = sym_cmd_identifier, + }, + [16] = { [0] = sym_arg_identifier, [2] = sym_arg_identifier, }, - [14] = { + [17] = { [0] = sym_pf_arg_identifier, [2] = sym_pf_arg_identifier, }, - [16] = { + [19] = { [1] = sym_pf_arg_identifier, }, }; -static inline bool sym_grep_specifier_identifier_character_set_1(int32_t lookahead) { - return - lookahead == 0 || - lookahead == '\n' || - lookahead == '\r' || - lookahead == '#' || - lookahead == '(' || - lookahead == ';' || - lookahead == '>' || - lookahead == '`' || - lookahead == '|'; +static uint16_t ts_non_terminal_alias_map[] = { + sym__dec_number, 2, + sym__dec_number, + alias_sym_number, + 0, +}; + +static inline bool sym_grep_specifier_identifier_character_set_1(int32_t c) { + return (c < '(' + ? (c < '\r' + ? (c < '\n' + ? c == 0 + : c <= '\n') + : (c <= '\r' || c == '#')) + : (c <= '(' || (c < '`' + ? (c < '>' + ? c == ';' + : c <= '>') + : (c <= '`' || c == '|')))); } -static inline bool sym_grep_specifier_identifier_character_set_2(int32_t lookahead) { - return - lookahead == 0 || - lookahead == '\n' || - lookahead == '\r' || - lookahead == '#' || - lookahead == '(' || - lookahead == ')' || - lookahead == ';' || - lookahead == '>' || - lookahead == '@' || - lookahead == '`' || - lookahead == '|'; +static inline bool sym_grep_specifier_identifier_character_set_2(int32_t c) { + return (c < ';' + ? (c < '\r' + ? (c < '\n' + ? c == 0 + : c <= '\n') + : (c <= '\r' || (c < '(' + ? c == '#' + : c <= ')'))) + : (c <= ';' || (c < '`' + ? (c < '@' + ? c == '>' + : c <= '@') + : (c <= '`' || c == '|')))); } -static inline bool aux_sym__pf_dot_arg_identifier_token1_character_set_2(int32_t lookahead) { - return - lookahead == 0 || - lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == '"' || - lookahead == '#' || - ('\'' <= lookahead && lookahead <= ')') || - lookahead == '.' || - lookahead == ';' || - lookahead == '=' || - lookahead == '>' || - lookahead == '@' || - lookahead == '`' || - lookahead == '|' || - lookahead == '~'; +static inline bool sym_grep_specifier_identifier_character_set_3(int32_t c) { + return (c < '(' + ? (c < '\r' + ? (c < '\n' + ? c == 0 + : c <= '\n') + : (c <= '\r' || c == '#')) + : (c <= ')' || (c < '`' + ? (c < '@' + ? c == ';' + : c <= '@') + : (c <= '`' || c == '|')))); } -static inline bool aux_sym_pf_arg_identifier_token1_character_set_2(int32_t lookahead) { - return - lookahead == 0 || - lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == '"' || - lookahead == '#' || - ('\'' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '>' || - lookahead == '@' || - lookahead == '`' || - lookahead == '|' || - lookahead == '~'; +static inline bool aux_sym__pf_dot_arg_identifier_token1_character_set_1(int32_t c) { + return (c < ';' + ? (c < '\r' + ? (c < '\n' + ? c == 0 + : c <= '\n') + : (c <= '\r' || (c < '\'' + ? c == '"' + : c <= ')'))) + : (c <= ';' || (c < '|' + ? (c < '@' + ? (c >= '=' && c <= '>') + : c <= '@') + : (c <= '|' || c == '~')))); } -static inline bool sym__eq_sep_key_identifier_character_set_2(int32_t lookahead) { - return - lookahead == 0 || - lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == '"' || - lookahead == '#' || - ('\'' <= lookahead && lookahead <= ')') || - lookahead == ',' || - lookahead == ';' || - lookahead == '=' || - lookahead == '>' || - lookahead == '@' || - lookahead == '\\' || - lookahead == '`' || - lookahead == '|' || - lookahead == '~'; +static inline bool aux_sym__pf_dot_arg_identifier_token1_character_set_2(int32_t c) { + return (c < '.' + ? (c < ' ' + ? (c < '\t' + ? c == 0 + : (c <= '\n' || c == '\r')) + : (c <= ' ' || (c < '\'' + ? (c >= '"' && c <= '#') + : c <= ')'))) + : (c <= '.' || (c < '`' + ? (c < '=' + ? c == ';' + : (c <= '>' || c == '@')) + : (c <= '`' || (c < '~' + ? c == '|' + : c <= '~'))))); } -static inline bool aux_sym_arg_identifier_token1_character_set_1(int32_t lookahead) { - return - lookahead == 0 || - lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == '"' || - lookahead == '#' || - ('\'' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '>' || - lookahead == '@' || - lookahead == '\\' || - lookahead == '`' || - lookahead == '|' || - lookahead == '~'; +static inline bool aux_sym__pf_dot_arg_identifier_token1_character_set_3(int32_t c) { + return (c < ';' + ? (c < '\'' + ? (c < '"' + ? c == '\t' + : c <= '#') + : (c <= ')' || c == '.')) + : (c <= ';' || (c < '`' + ? (c < '@' + ? (c >= '=' && c <= '>') + : c <= '@') + : (c <= '`' || (c >= '|' && c <= '~'))))); } -static inline bool aux_sym_arg_identifier_token1_character_set_3(int32_t lookahead) { - return - lookahead == 0 || - lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == '"' || - lookahead == '#' || - ('\'' <= lookahead && lookahead <= ')') || - lookahead == ',' || - lookahead == ';' || - lookahead == '>' || - lookahead == '@' || - lookahead == '`' || - lookahead == '|' || - lookahead == '~'; +static inline bool aux_sym_pf_arg_identifier_token1_character_set_1(int32_t c) { + return (c < ';' + ? (c < '\r' + ? (c < '\n' + ? c == 0 + : c <= '\n') + : (c <= '\r' || (c < '\'' + ? c == '"' + : c <= '\''))) + : (c <= ';' || (c < '|' + ? (c < '@' + ? c == '>' + : c <= '@') + : (c <= '|' || c == '~')))); +} + +static inline bool aux_sym_pf_arg_identifier_token1_character_set_2(int32_t c) { + return (c < ';' + ? (c < ' ' + ? (c < '\t' + ? c == 0 + : (c <= '\n' || c == '\r')) + : (c <= ' ' || (c < '\'' + ? (c >= '"' && c <= '#') + : c <= ')'))) + : (c <= ';' || (c < '`' + ? (c < '@' + ? c == '>' + : c <= '@') + : (c <= '`' || (c < '~' + ? c == '|' + : c <= '~'))))); +} + +static inline bool aux_sym_pf_arg_identifier_token1_character_set_3(int32_t c) { + return (c < '\'' + ? (c < '\r' + ? (c < '\t' + ? c == 0 + : c <= '\n') + : (c <= '\r' || (c < '"' + ? c == ' ' + : c <= '#'))) + : (c <= ')' || (c < '`' + ? (c < '@' + ? c == ';' + : c <= '@') + : (c <= '`' || (c < '~' + ? c == '|' + : c <= '~'))))); +} + +static inline bool aux_sym_tmp_eval_arg_token1_character_set_1(int32_t c) { + return (c < ';' + ? (c < '"' + ? (c < '\n' + ? c == 0 + : (c <= '\n' || c == '\r')) + : (c <= '$' || (c < ',' + ? (c >= '\'' && c <= ')') + : c <= ','))) + : (c <= ';' || (c < '`' + ? (c < '@' + ? c == '>' + : (c <= '@' || c == '\\')) + : (c <= '`' || (c < '~' + ? c == '|' + : c <= '~'))))); +} + +static inline bool sym__eq_sep_key_identifier_character_set_1(int32_t c) { + return (c < ';' + ? (c < '\r' + ? (c < '\n' + ? c == 0 + : c <= '\n') + : (c <= '\r' || (c < ',' + ? (c >= '(' && c <= ')') + : c <= ','))) + : (c <= ';' || (c < '\\' + ? (c < '@' + ? (c >= '=' && c <= '>') + : c <= '@') + : (c <= '\\' || (c < '~' + ? c == '|' + : c <= '~'))))); +} + +static inline bool sym__eq_sep_key_identifier_character_set_2(int32_t c) { + return (c < ';' + ? (c < ' ' + ? (c < '\t' + ? c == 0 + : (c <= '\n' || c == '\r')) + : (c <= ' ' || (c < '\'' + ? (c >= '"' && c <= '#') + : (c <= ')' || c == ',')))) + : (c <= ';' || (c < '`' + ? (c < '@' + ? (c >= '=' && c <= '>') + : (c <= '@' || c == '\\')) + : (c <= '`' || (c < '~' + ? c == '|' + : c <= '~'))))); +} + +static inline bool sym__eq_sep_key_identifier_character_set_3(int32_t c) { + return (c < ';' + ? (c < ' ' + ? (c < '\t' + ? c == 0 + : (c <= '\n' || c == '\r')) + : (c <= ' ' || (c < '\'' + ? (c >= '"' && c <= '#') + : (c <= ')' || c == ',')))) + : (c <= ';' || (c < '`' + ? (c < '@' + ? c == '=' + : (c <= '@' || c == '\\')) + : (c <= '`' || (c < '~' + ? c == '|' + : c <= '~'))))); +} + +static inline bool aux_sym_arg_identifier_token1_character_set_1(int32_t c) { + return (c < ';' + ? (c < ' ' + ? (c < '\t' + ? c == 0 + : (c <= '\n' || c == '\r')) + : (c <= ' ' || (c < '\'' + ? (c >= '"' && c <= '#') + : c <= ')'))) + : (c <= ';' || (c < '`' + ? (c < '@' + ? c == '>' + : (c <= '@' || c == '\\')) + : (c <= '`' || (c < '~' + ? c == '|' + : c <= '~'))))); +} + +static inline bool aux_sym_arg_identifier_token1_character_set_2(int32_t c) { + return (c < ',' + ? (c < ' ' + ? (c < '\t' + ? c == 0 + : (c <= '\n' || c == '\r')) + : (c <= ' ' || (c < '\'' + ? (c >= '"' && c <= '#') + : c <= ')'))) + : (c <= ',' || (c < '`' + ? (c < '@' + ? c == ';' + : c <= '@') + : (c <= '`' || (c < '~' + ? c == '|' + : c <= '~'))))); +} + +static inline bool aux_sym_arg_identifier_token1_character_set_3(int32_t c) { + return (c < ',' + ? (c < ' ' + ? (c < '\t' + ? c == 0 + : (c <= '\n' || c == '\r')) + : (c <= ' ' || (c < '\'' + ? (c >= '"' && c <= '#') + : c <= ')'))) + : (c <= ',' || (c < '`' + ? (c < '>' + ? c == ';' + : (c <= '>' || c == '@')) + : (c <= '`' || (c < '~' + ? c == '|' + : c <= '~'))))); +} + +static inline bool aux_sym_arg_identifier_token1_character_set_4(int32_t c) { + return (c < ';' + ? (c < '\'' + ? (c < '"' + ? c == '\t' + : c <= '#') + : (c <= ')' || c == ',')) + : (c <= ';' || (c < '`' + ? (c < '@' + ? c == '>' + : c <= '@') + : (c <= '`' || (c >= '|' && c <= '~'))))); } static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -2009,19 +2187,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '`') ADVANCE(285); if (lookahead == '\t' || lookahead == ' ') SKIP(2) - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '(' && - lookahead != ')' && - lookahead != ',' && - lookahead != ';' && - lookahead != '=' && - lookahead != '>' && - lookahead != '@' && - lookahead != '\\' && - lookahead != '|' && - lookahead != '~') ADVANCE(262); + if (!sym__eq_sep_key_identifier_character_set_1(lookahead)) ADVANCE(262); END_STATE(); case 3: if (lookahead == '"') ADVANCE(72); @@ -2056,58 +2222,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(229); if (lookahead == '(') ADVANCE(232); if (lookahead == ')') ADVANCE(172); - if (lookahead == '\\') ADVANCE(55); + if (lookahead == '\\') ADVANCE(59); if (lookahead == '`') ADVANCE(285); if (lookahead == '\t' || lookahead == ' ') SKIP(5) - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - lookahead != '\'' && - lookahead != ';' && - lookahead != '>' && - lookahead != '@' && - lookahead != '|' && - lookahead != '~') ADVANCE(236); + if (!aux_sym_pf_arg_identifier_token1_character_set_1(lookahead)) ADVANCE(236); END_STATE(); case 6: if (lookahead == '#') ADVANCE(290); if (lookahead == '$') ADVANCE(230); if (lookahead == '.') ADVANCE(205); - if (lookahead == '\\') ADVANCE(56); + if (lookahead == '\\') ADVANCE(60); if (lookahead == '`') ADVANCE(285); if (lookahead == '\t' || lookahead == ' ') SKIP(6) - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '"' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '=' && - lookahead != '>' && - lookahead != '@' && - lookahead != '|' && - lookahead != '~') ADVANCE(226); + if (!aux_sym__pf_dot_arg_identifier_token1_character_set_1(lookahead)) ADVANCE(226); END_STATE(); case 7: if (lookahead == '#') ADVANCE(290); if (lookahead == '\t' || lookahead == ' ') SKIP(7) - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ',' && - lookahead != ';' && - lookahead != '>' && - lookahead != '@' && - lookahead != '\\' && - lookahead != '`' && - lookahead != '|' && - lookahead != '~') ADVANCE(256); + if (!aux_sym_tmp_eval_arg_token1_character_set_1(lookahead)) ADVANCE(256); END_STATE(); case 8: if (lookahead == '#') ADVANCE(113); @@ -2161,7 +2296,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 12: if (lookahead == '#') ADVANCE(289); - if (lookahead == '\\') ADVANCE(53); + if (lookahead == '\\') ADVANCE(61); if (lookahead == '\t' || lookahead == ' ') ADVANCE(73); if (lookahead != 0 && @@ -2169,22 +2304,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 13: if (lookahead == '$') ADVANCE(270); - if (lookahead == '{') ADVANCE(57); + if (lookahead == '{') ADVANCE(54); if (!aux_sym_arg_identifier_token1_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 14: if (lookahead == '$') ADVANCE(234); - if (lookahead == '{') ADVANCE(58); + if (lookahead == '{') ADVANCE(55); if (!aux_sym_arg_identifier_token1_character_set_1(lookahead)) ADVANCE(236); END_STATE(); case 15: if (lookahead == '$') ADVANCE(225); - if (lookahead == '{') ADVANCE(60); + if (lookahead == '{') ADVANCE(57); if (!aux_sym_arg_identifier_token1_character_set_1(lookahead)) ADVANCE(226); END_STATE(); case 16: if (lookahead == '(') ADVANCE(284); - if (lookahead == '{') ADVANCE(59); + if (lookahead == '{') ADVANCE(56); if (lookahead != 0) ADVANCE(262); END_STATE(); case 17: @@ -2268,7 +2403,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(239); END_STATE(); case 43: - if (lookahead == '{') ADVANCE(59); + if (lookahead == '{') ADVANCE(56); if (lookahead != 0 && lookahead != '(') ADVANCE(262); END_STATE(); @@ -2338,21 +2473,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(203); END_STATE(); case 53: - if (lookahead != 0) ADVANCE(74); + if (!sym_grep_specifier_identifier_character_set_1(lookahead)) ADVANCE(81); END_STATE(); case 54: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(267); - END_STATE(); - case 55: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(236); - END_STATE(); - case 56: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(226); - END_STATE(); - case 57: if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && @@ -2360,7 +2483,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '$' && lookahead != '}') ADVANCE(44); END_STATE(); - case 58: + case 55: if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && @@ -2368,7 +2491,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '$' && lookahead != '}') ADVANCE(45); END_STATE(); - case 59: + case 56: if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && @@ -2376,7 +2499,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '$' && lookahead != '}') ADVANCE(46); END_STATE(); - case 60: + case 57: if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && @@ -2384,8 +2507,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '$' && lookahead != '}') ADVANCE(47); END_STATE(); + case 58: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(267); + END_STATE(); + case 59: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(236); + END_STATE(); + case 60: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(226); + END_STATE(); case 61: - if (!sym_grep_specifier_identifier_character_set_1(lookahead)) ADVANCE(81); + if (lookahead != 0) ADVANCE(74); END_STATE(); case 62: if (eof) ADVANCE(71); @@ -2433,7 +2568,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(247); if (lookahead == '@') ADVANCE(166); if (lookahead == 'H') ADVANCE(266); - if (lookahead == '\\') ADVANCE(54); + if (lookahead == '\\') ADVANCE(58); if (lookahead == '`') ADVANCE(285); if (lookahead == '|') ADVANCE(87); if (lookahead == '~') ADVANCE(75); @@ -2453,7 +2588,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(172); if (lookahead == ',') ADVANCE(255); if (lookahead == ';') ADVANCE(246); - if (lookahead == '\\') ADVANCE(54); + if (lookahead == '\\') ADVANCE(58); if (lookahead == '`') ADVANCE(285); if (lookahead == '\t' || lookahead == ' ') SKIP(64) @@ -2521,7 +2656,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(247); if (lookahead == '@') ADVANCE(166); if (lookahead == 'H') ADVANCE(235); - if (lookahead == '\\') ADVANCE(55); + if (lookahead == '\\') ADVANCE(59); if (lookahead == '`') ADVANCE(285); if (lookahead == '|') ADVANCE(87); if (lookahead == '~') ADVANCE(75); @@ -2543,7 +2678,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(247); if (lookahead == '@') ADVANCE(166); if (lookahead == 'H') ADVANCE(235); - if (lookahead == '\\') ADVANCE(55); + if (lookahead == '\\') ADVANCE(59); if (lookahead == '`') ADVANCE(285); if (lookahead == '|') ADVANCE(87); if (lookahead == '~') ADVANCE(75); @@ -2599,7 +2734,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 73: ACCEPT_TOKEN(aux_sym_legacy_quoted_command_token1); if (lookahead == '#') ADVANCE(289); - if (lookahead == '\\') ADVANCE(53); + if (lookahead == '\\') ADVANCE(61); if (lookahead == '\t' || lookahead == ' ') ADVANCE(73); if (lookahead != 0 && @@ -2607,7 +2742,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 74: ACCEPT_TOKEN(aux_sym_legacy_quoted_command_token1); - if (lookahead == '\\') ADVANCE(53); + if (lookahead == '\\') ADVANCE(61); if (lookahead != 0 && lookahead != '"') ADVANCE(74); END_STATE(); @@ -2616,7 +2751,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 76: ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead == '$') ADVANCE(61); + if (lookahead == '$') ADVANCE(53); if (lookahead == '\\') ADVANCE(83); if (!sym_grep_specifier_identifier_character_set_2(lookahead)) ADVANCE(81); END_STATE(); @@ -2648,23 +2783,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 80: ACCEPT_TOKEN(sym_grep_specifier_identifier); - if (lookahead == '$') ADVANCE(61); + if (lookahead == '$') ADVANCE(53); if (lookahead == '>') ADVANCE(251); if (lookahead == '\\') ADVANCE(83); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '#' && - lookahead != '(' && - lookahead != ')' && - lookahead != ';' && - lookahead != '@' && - lookahead != '`' && - lookahead != '|') ADVANCE(81); + if (!sym_grep_specifier_identifier_character_set_3(lookahead)) ADVANCE(81); END_STATE(); case 81: ACCEPT_TOKEN(sym_grep_specifier_identifier); - if (lookahead == '$') ADVANCE(61); + if (lookahead == '$') ADVANCE(53); if (lookahead == '\\') ADVANCE(83); if (!sym_grep_specifier_identifier_character_set_2(lookahead)) ADVANCE(81); END_STATE(); @@ -3633,13 +3759,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 223: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '$') ADVANCE(14); - if (lookahead == '\\') ADVANCE(55); + if (lookahead == '\\') ADVANCE(59); if (!aux_sym_pf_arg_identifier_token1_character_set_2(lookahead)) ADVANCE(236); END_STATE(); case 224: ACCEPT_TOKEN(aux_sym__pf_dot_arg_identifier_token1); if (lookahead == '$') ADVANCE(224); - if (lookahead == '\\') ADVANCE(56); + if (lookahead == '\\') ADVANCE(60); if (lookahead == '{') ADVANCE(227); if (lookahead == '.' || lookahead == '=') ADVANCE(226); @@ -3648,13 +3774,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 225: ACCEPT_TOKEN(aux_sym__pf_dot_arg_identifier_token1); if (lookahead == '$') ADVANCE(224); - if (lookahead == '\\') ADVANCE(56); + if (lookahead == '\\') ADVANCE(60); if (!aux_sym__pf_dot_arg_identifier_token1_character_set_2(lookahead)) ADVANCE(226); END_STATE(); case 226: ACCEPT_TOKEN(aux_sym__pf_dot_arg_identifier_token1); if (lookahead == '$') ADVANCE(15); - if (lookahead == '\\') ADVANCE(56); + if (lookahead == '\\') ADVANCE(60); if (!aux_sym__pf_dot_arg_identifier_token1_character_set_2(lookahead)) ADVANCE(226); END_STATE(); case 227: @@ -3662,17 +3788,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(15); if (lookahead == '\\') ADVANCE(51); if (lookahead == '}') ADVANCE(226); - if (lookahead == '\t' || - lookahead == '"' || - lookahead == '#' || - ('\'' <= lookahead && lookahead <= ')') || - lookahead == '.' || - lookahead == ';' || - lookahead == '=' || - lookahead == '>' || - lookahead == '@' || - lookahead == '`' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(47); + if (aux_sym__pf_dot_arg_identifier_token1_character_set_3(lookahead)) ADVANCE(47); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && @@ -3682,21 +3798,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead == '$') ADVANCE(270); if (lookahead == '(') ADVANCE(284); - if (lookahead == '{') ADVANCE(57); + if (lookahead == '{') ADVANCE(54); if (!aux_sym_arg_identifier_token1_character_set_1(lookahead)) ADVANCE(267); END_STATE(); case 229: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead == '$') ADVANCE(234); if (lookahead == '(') ADVANCE(284); - if (lookahead == '{') ADVANCE(58); + if (lookahead == '{') ADVANCE(55); if (!aux_sym_arg_identifier_token1_character_set_1(lookahead)) ADVANCE(236); END_STATE(); case 230: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead == '$') ADVANCE(225); if (lookahead == '(') ADVANCE(284); - if (lookahead == '{') ADVANCE(60); + if (lookahead == '{') ADVANCE(57); if (!aux_sym_arg_identifier_token1_character_set_1(lookahead)) ADVANCE(226); END_STATE(); case 231: @@ -3709,39 +3825,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 233: ACCEPT_TOKEN(aux_sym_pf_arg_identifier_token1); if (lookahead == '$') ADVANCE(233); - if (lookahead == '\\') ADVANCE(55); + if (lookahead == '\\') ADVANCE(59); if (lookahead == '{') ADVANCE(237); if (!aux_sym_pf_arg_identifier_token1_character_set_2(lookahead)) ADVANCE(236); END_STATE(); case 234: ACCEPT_TOKEN(aux_sym_pf_arg_identifier_token1); if (lookahead == '$') ADVANCE(233); - if (lookahead == '\\') ADVANCE(55); + if (lookahead == '\\') ADVANCE(59); if (!aux_sym_pf_arg_identifier_token1_character_set_2(lookahead)) ADVANCE(236); END_STATE(); case 235: ACCEPT_TOKEN(aux_sym_pf_arg_identifier_token1); if (lookahead == '$') ADVANCE(14); if (lookahead == '>') ADVANCE(251); - if (lookahead == '\\') ADVANCE(55); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '@' && - lookahead != '`' && - lookahead != '|' && - lookahead != '~') ADVANCE(236); + if (lookahead == '\\') ADVANCE(59); + if (!aux_sym_pf_arg_identifier_token1_character_set_3(lookahead)) ADVANCE(236); END_STATE(); case 236: ACCEPT_TOKEN(aux_sym_pf_arg_identifier_token1); if (lookahead == '$') ADVANCE(14); - if (lookahead == '\\') ADVANCE(55); + if (lookahead == '\\') ADVANCE(59); if (!aux_sym_pf_arg_identifier_token1_character_set_2(lookahead)) ADVANCE(236); END_STATE(); case 237: @@ -3867,22 +3971,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(43); if (lookahead == '%') ADVANCE(258); if (lookahead == '>') ADVANCE(251); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ',' && - lookahead != ';' && - lookahead != '=' && - lookahead != '@' && - lookahead != '\\' && - lookahead != '`' && - lookahead != '|' && - lookahead != '~') ADVANCE(262); + if (!sym__eq_sep_key_identifier_character_set_3(lookahead)) ADVANCE(262); END_STATE(); case 260: ACCEPT_TOKEN(sym__eq_sep_key_identifier); @@ -3938,26 +4027,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_arg_identifier_token1); if (lookahead == '$') ADVANCE(13); if (lookahead == '>') ADVANCE(251); - if (lookahead == '\\') ADVANCE(54); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ',' && - lookahead != ';' && - lookahead != '@' && - lookahead != '`' && - lookahead != '|' && - lookahead != '~') ADVANCE(267); + if (lookahead == '\\') ADVANCE(58); + if (!aux_sym_arg_identifier_token1_character_set_2(lookahead)) ADVANCE(267); END_STATE(); case 267: ACCEPT_TOKEN(aux_sym_arg_identifier_token1); if (lookahead == '$') ADVANCE(13); - if (lookahead == '\\') ADVANCE(54); + if (lookahead == '\\') ADVANCE(58); if (!aux_sym_arg_identifier_token1_character_set_3(lookahead)) ADVANCE(267); END_STATE(); case 268: @@ -3965,16 +4041,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(13); if (lookahead == '\\') ADVANCE(49); if (lookahead == '}') ADVANCE(267); - if (lookahead == '\t' || - lookahead == '"' || - lookahead == '#' || - ('\'' <= lookahead && lookahead <= ')') || - lookahead == ',' || - lookahead == ';' || - lookahead == '>' || - lookahead == '@' || - lookahead == '`' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(44); + if (aux_sym_arg_identifier_token1_character_set_4(lookahead)) ADVANCE(44); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && @@ -3984,14 +4051,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_arg_identifier_token1); if (lookahead == '$') ADVANCE(269); if (lookahead == ',') ADVANCE(267); - if (lookahead == '\\') ADVANCE(54); + if (lookahead == '\\') ADVANCE(58); if (lookahead == '{') ADVANCE(268); if (!aux_sym_pf_arg_identifier_token1_character_set_2(lookahead)) ADVANCE(267); END_STATE(); case 270: ACCEPT_TOKEN(aux_sym_arg_identifier_token1); if (lookahead == '$') ADVANCE(269); - if (lookahead == '\\') ADVANCE(54); + if (lookahead == '\\') ADVANCE(58); if (!aux_sym_arg_identifier_token1_character_set_3(lookahead)) ADVANCE(267); END_STATE(); case 271: @@ -4205,10 +4272,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [67] = {.lex_state = 63, .external_lex_state = 4}, [68] = {.lex_state = 63, .external_lex_state = 4}, [69] = {.lex_state = 63, .external_lex_state = 4}, - [70] = {.lex_state = 67, .external_lex_state = 5}, - [71] = {.lex_state = 68, .external_lex_state = 4}, + [70] = {.lex_state = 65, .external_lex_state = 4}, + [71] = {.lex_state = 67, .external_lex_state = 5}, [72] = {.lex_state = 68, .external_lex_state = 4}, - [73] = {.lex_state = 65, .external_lex_state = 4}, + [73] = {.lex_state = 68, .external_lex_state = 4}, [74] = {.lex_state = 63, .external_lex_state = 6}, [75] = {.lex_state = 63, .external_lex_state = 6}, [76] = {.lex_state = 63, .external_lex_state = 6}, @@ -4222,99 +4289,99 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [84] = {.lex_state = 63, .external_lex_state = 6}, [85] = {.lex_state = 63, .external_lex_state = 6}, [86] = {.lex_state = 63, .external_lex_state = 6}, - [87] = {.lex_state = 67, .external_lex_state = 5}, + [87] = {.lex_state = 63, .external_lex_state = 4}, [88] = {.lex_state = 67, .external_lex_state = 5}, [89] = {.lex_state = 68, .external_lex_state = 4}, - [90] = {.lex_state = 65, .external_lex_state = 4}, - [91] = {.lex_state = 63, .external_lex_state = 4}, + [90] = {.lex_state = 67, .external_lex_state = 5}, + [91] = {.lex_state = 65, .external_lex_state = 4}, [92] = {.lex_state = 67, .external_lex_state = 5}, - [93] = {.lex_state = 68, .external_lex_state = 6}, + [93] = {.lex_state = 67, .external_lex_state = 5}, [94] = {.lex_state = 67, .external_lex_state = 5}, [95] = {.lex_state = 67, .external_lex_state = 5}, [96] = {.lex_state = 68, .external_lex_state = 6}, [97] = {.lex_state = 67, .external_lex_state = 5}, [98] = {.lex_state = 68, .external_lex_state = 6}, - [99] = {.lex_state = 67, .external_lex_state = 5}, + [99] = {.lex_state = 68, .external_lex_state = 6}, [100] = {.lex_state = 67, .external_lex_state = 5}, [101] = {.lex_state = 68, .external_lex_state = 6}, [102] = {.lex_state = 68, .external_lex_state = 6}, [103] = {.lex_state = 68, .external_lex_state = 6}, [104] = {.lex_state = 68, .external_lex_state = 6}, [105] = {.lex_state = 68, .external_lex_state = 6}, - [106] = {.lex_state = 68, .external_lex_state = 4}, + [106] = {.lex_state = 65, .external_lex_state = 4}, [107] = {.lex_state = 66, .external_lex_state = 4}, [108] = {.lex_state = 66, .external_lex_state = 4}, - [109] = {.lex_state = 65, .external_lex_state = 4}, + [109] = {.lex_state = 68, .external_lex_state = 4}, [110] = {.lex_state = 62, .external_lex_state = 7}, - [111] = {.lex_state = 0, .external_lex_state = 8}, - [112] = {.lex_state = 69, .external_lex_state = 4}, + [111] = {.lex_state = 62, .external_lex_state = 7}, + [112] = {.lex_state = 0, .external_lex_state = 8}, [113] = {.lex_state = 62, .external_lex_state = 7}, [114] = {.lex_state = 62, .external_lex_state = 5}, [115] = {.lex_state = 69, .external_lex_state = 4}, - [116] = {.lex_state = 62, .external_lex_state = 5}, - [117] = {.lex_state = 0, .external_lex_state = 8}, + [116] = {.lex_state = 0, .external_lex_state = 8}, + [117] = {.lex_state = 62, .external_lex_state = 5}, [118] = {.lex_state = 62, .external_lex_state = 5}, - [119] = {.lex_state = 0, .external_lex_state = 8}, - [120] = {.lex_state = 62, .external_lex_state = 5}, - [121] = {.lex_state = 0, .external_lex_state = 8}, - [122] = {.lex_state = 62, .external_lex_state = 7}, + [119] = {.lex_state = 62, .external_lex_state = 5}, + [120] = {.lex_state = 0, .external_lex_state = 8}, + [121] = {.lex_state = 62, .external_lex_state = 5}, + [122] = {.lex_state = 0, .external_lex_state = 8}, [123] = {.lex_state = 62, .external_lex_state = 5}, - [124] = {.lex_state = 62, .external_lex_state = 5}, - [125] = {.lex_state = 0, .external_lex_state = 8}, - [126] = {.lex_state = 62, .external_lex_state = 7}, - [127] = {.lex_state = 62, .external_lex_state = 5}, - [128] = {.lex_state = 62, .external_lex_state = 7}, - [129] = {.lex_state = 66, .external_lex_state = 4}, - [130] = {.lex_state = 66, .external_lex_state = 4}, + [124] = {.lex_state = 69, .external_lex_state = 4}, + [125] = {.lex_state = 62, .external_lex_state = 5}, + [126] = {.lex_state = 0, .external_lex_state = 8}, + [127] = {.lex_state = 0, .external_lex_state = 8}, + [128] = {.lex_state = 0, .external_lex_state = 4}, + [129] = {.lex_state = 0, .external_lex_state = 8}, + [130] = {.lex_state = 62, .external_lex_state = 7}, [131] = {.lex_state = 62, .external_lex_state = 7}, - [132] = {.lex_state = 62, .external_lex_state = 7}, - [133] = {.lex_state = 62, .external_lex_state = 5}, - [134] = {.lex_state = 0, .external_lex_state = 8}, - [135] = {.lex_state = 0, .external_lex_state = 4}, + [132] = {.lex_state = 0, .external_lex_state = 8}, + [133] = {.lex_state = 0, .external_lex_state = 8}, + [134] = {.lex_state = 0, .external_lex_state = 4}, + [135] = {.lex_state = 62, .external_lex_state = 7}, [136] = {.lex_state = 62, .external_lex_state = 5}, - [137] = {.lex_state = 0, .external_lex_state = 4}, - [138] = {.lex_state = 62, .external_lex_state = 7}, + [137] = {.lex_state = 66, .external_lex_state = 4}, + [138] = {.lex_state = 0, .external_lex_state = 8}, [139] = {.lex_state = 0, .external_lex_state = 8}, - [140] = {.lex_state = 62, .external_lex_state = 7}, - [141] = {.lex_state = 0, .external_lex_state = 8}, - [142] = {.lex_state = 0, .external_lex_state = 8}, - [143] = {.lex_state = 0, .external_lex_state = 8}, + [140] = {.lex_state = 0, .external_lex_state = 8}, + [141] = {.lex_state = 62, .external_lex_state = 7}, + [142] = {.lex_state = 62, .external_lex_state = 7}, + [143] = {.lex_state = 66, .external_lex_state = 4}, [144] = {.lex_state = 66, .external_lex_state = 4}, [145] = {.lex_state = 0, .external_lex_state = 8}, - [146] = {.lex_state = 0, .external_lex_state = 8}, - [147] = {.lex_state = 0, .external_lex_state = 8}, - [148] = {.lex_state = 0, .external_lex_state = 4}, - [149] = {.lex_state = 66, .external_lex_state = 4}, - [150] = {.lex_state = 62, .external_lex_state = 5}, - [151] = {.lex_state = 62, .external_lex_state = 5}, - [152] = {.lex_state = 62, .external_lex_state = 7}, - [153] = {.lex_state = 0, .external_lex_state = 8}, - [154] = {.lex_state = 0, .external_lex_state = 7}, + [146] = {.lex_state = 62, .external_lex_state = 7}, + [147] = {.lex_state = 62, .external_lex_state = 5}, + [148] = {.lex_state = 62, .external_lex_state = 5}, + [149] = {.lex_state = 62, .external_lex_state = 5}, + [150] = {.lex_state = 62, .external_lex_state = 7}, + [151] = {.lex_state = 0, .external_lex_state = 4}, + [152] = {.lex_state = 0, .external_lex_state = 7}, + [153] = {.lex_state = 62, .external_lex_state = 5}, + [154] = {.lex_state = 0, .external_lex_state = 4}, [155] = {.lex_state = 0, .external_lex_state = 7}, - [156] = {.lex_state = 62, .external_lex_state = 5}, - [157] = {.lex_state = 0, .external_lex_state = 4}, - [158] = {.lex_state = 0, .external_lex_state = 4}, - [159] = {.lex_state = 0, .external_lex_state = 4}, - [160] = {.lex_state = 0, .external_lex_state = 7}, + [156] = {.lex_state = 0, .external_lex_state = 8}, + [157] = {.lex_state = 66, .external_lex_state = 4}, + [158] = {.lex_state = 62, .external_lex_state = 4}, + [159] = {.lex_state = 0, .external_lex_state = 7}, + [160] = {.lex_state = 0, .external_lex_state = 4}, [161] = {.lex_state = 0, .external_lex_state = 4}, [162] = {.lex_state = 0, .external_lex_state = 4}, - [163] = {.lex_state = 0, .external_lex_state = 4}, - [164] = {.lex_state = 62, .external_lex_state = 4}, - [165] = {.lex_state = 0, .external_lex_state = 7}, - [166] = {.lex_state = 66, .external_lex_state = 4}, - [167] = {.lex_state = 62, .external_lex_state = 4}, - [168] = {.lex_state = 0, .external_lex_state = 4}, + [163] = {.lex_state = 0, .external_lex_state = 7}, + [164] = {.lex_state = 0, .external_lex_state = 4}, + [165] = {.lex_state = 0, .external_lex_state = 4}, + [166] = {.lex_state = 62, .external_lex_state = 4}, + [167] = {.lex_state = 66, .external_lex_state = 4}, + [168] = {.lex_state = 62, .external_lex_state = 4}, [169] = {.lex_state = 0, .external_lex_state = 4}, [170] = {.lex_state = 62, .external_lex_state = 4}, - [171] = {.lex_state = 62, .external_lex_state = 4}, + [171] = {.lex_state = 0, .external_lex_state = 4}, [172] = {.lex_state = 62, .external_lex_state = 4}, [173] = {.lex_state = 0, .external_lex_state = 4}, - [174] = {.lex_state = 62, .external_lex_state = 4}, - [175] = {.lex_state = 0, .external_lex_state = 4}, + [174] = {.lex_state = 66, .external_lex_state = 4}, + [175] = {.lex_state = 0, .external_lex_state = 5}, [176] = {.lex_state = 0, .external_lex_state = 4}, [177] = {.lex_state = 0, .external_lex_state = 4}, [178] = {.lex_state = 0, .external_lex_state = 4}, - [179] = {.lex_state = 0, .external_lex_state = 5}, + [179] = {.lex_state = 0, .external_lex_state = 4}, [180] = {.lex_state = 0, .external_lex_state = 4}, [181] = {.lex_state = 0, .external_lex_state = 4}, [182] = {.lex_state = 0, .external_lex_state = 4}, @@ -4346,7 +4413,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [208] = {.lex_state = 0, .external_lex_state = 4}, [209] = {.lex_state = 0, .external_lex_state = 4}, [210] = {.lex_state = 0, .external_lex_state = 4}, - [211] = {.lex_state = 0, .external_lex_state = 4}, + [211] = {.lex_state = 62, .external_lex_state = 4}, [212] = {.lex_state = 0, .external_lex_state = 4}, [213] = {.lex_state = 0, .external_lex_state = 4}, [214] = {.lex_state = 0, .external_lex_state = 4}, @@ -4360,7 +4427,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [222] = {.lex_state = 0, .external_lex_state = 4}, [223] = {.lex_state = 0, .external_lex_state = 4}, [224] = {.lex_state = 0, .external_lex_state = 4}, - [225] = {.lex_state = 66, .external_lex_state = 4}, + [225] = {.lex_state = 0, .external_lex_state = 4}, [226] = {.lex_state = 0, .external_lex_state = 4}, [227] = {.lex_state = 0, .external_lex_state = 4}, [228] = {.lex_state = 0, .external_lex_state = 4}, @@ -4392,24 +4459,24 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [254] = {.lex_state = 0, .external_lex_state = 4}, [255] = {.lex_state = 0, .external_lex_state = 4}, [256] = {.lex_state = 0, .external_lex_state = 4}, - [257] = {.lex_state = 70, .external_lex_state = 4}, - [258] = {.lex_state = 0, .external_lex_state = 5}, - [259] = {.lex_state = 9, .external_lex_state = 4}, - [260] = {.lex_state = 62, .external_lex_state = 4}, - [261] = {.lex_state = 8, .external_lex_state = 4}, - [262] = {.lex_state = 0, .external_lex_state = 4}, + [257] = {.lex_state = 0, .external_lex_state = 4}, + [258] = {.lex_state = 0, .external_lex_state = 4}, + [259] = {.lex_state = 0, .external_lex_state = 4}, + [260] = {.lex_state = 0, .external_lex_state = 4}, + [261] = {.lex_state = 0, .external_lex_state = 4}, + [262] = {.lex_state = 70, .external_lex_state = 4}, [263] = {.lex_state = 0, .external_lex_state = 4}, - [264] = {.lex_state = 62, .external_lex_state = 2}, - [265] = {.lex_state = 62, .external_lex_state = 2}, - [266] = {.lex_state = 64}, - [267] = {.lex_state = 64}, - [268] = {.lex_state = 64}, - [269] = {.lex_state = 64}, - [270] = {.lex_state = 64}, - [271] = {.lex_state = 64}, - [272] = {.lex_state = 64}, - [273] = {.lex_state = 64}, - [274] = {.lex_state = 64}, + [264] = {.lex_state = 0, .external_lex_state = 4}, + [265] = {.lex_state = 0, .external_lex_state = 4}, + [266] = {.lex_state = 0, .external_lex_state = 4}, + [267] = {.lex_state = 9, .external_lex_state = 4}, + [268] = {.lex_state = 8, .external_lex_state = 4}, + [269] = {.lex_state = 0, .external_lex_state = 5}, + [270] = {.lex_state = 62, .external_lex_state = 4}, + [271] = {.lex_state = 0, .external_lex_state = 4}, + [272] = {.lex_state = 0, .external_lex_state = 4}, + [273] = {.lex_state = 62, .external_lex_state = 2}, + [274] = {.lex_state = 62, .external_lex_state = 2}, [275] = {.lex_state = 64}, [276] = {.lex_state = 64}, [277] = {.lex_state = 64}, @@ -4444,192 +4511,201 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [306] = {.lex_state = 64}, [307] = {.lex_state = 64}, [308] = {.lex_state = 64}, - [309] = {.lex_state = 64, .external_lex_state = 9}, - [310] = {.lex_state = 64, .external_lex_state = 9}, - [311] = {.lex_state = 64, .external_lex_state = 9}, - [312] = {.lex_state = 64, .external_lex_state = 9}, - [313] = {.lex_state = 64, .external_lex_state = 9}, + [309] = {.lex_state = 64}, + [310] = {.lex_state = 64}, + [311] = {.lex_state = 64}, + [312] = {.lex_state = 64}, + [313] = {.lex_state = 64}, [314] = {.lex_state = 64}, - [315] = {.lex_state = 64, .external_lex_state = 9}, + [315] = {.lex_state = 64}, [316] = {.lex_state = 64}, - [317] = {.lex_state = 64, .external_lex_state = 9}, + [317] = {.lex_state = 64}, [318] = {.lex_state = 64, .external_lex_state = 9}, [319] = {.lex_state = 64, .external_lex_state = 9}, [320] = {.lex_state = 64, .external_lex_state = 9}, - [321] = {.lex_state = 64}, + [321] = {.lex_state = 64, .external_lex_state = 9}, [322] = {.lex_state = 64, .external_lex_state = 9}, - [323] = {.lex_state = 64}, + [323] = {.lex_state = 64, .external_lex_state = 9}, [324] = {.lex_state = 64}, [325] = {.lex_state = 64, .external_lex_state = 9}, - [326] = {.lex_state = 64, .external_lex_state = 9}, - [327] = {.lex_state = 5}, - [328] = {.lex_state = 5}, - [329] = {.lex_state = 5}, - [330] = {.lex_state = 5}, - [331] = {.lex_state = 5}, - [332] = {.lex_state = 5}, - [333] = {.lex_state = 64}, - [334] = {.lex_state = 5}, - [335] = {.lex_state = 5}, + [326] = {.lex_state = 64}, + [327] = {.lex_state = 64}, + [328] = {.lex_state = 64, .external_lex_state = 9}, + [329] = {.lex_state = 64, .external_lex_state = 9}, + [330] = {.lex_state = 64, .external_lex_state = 9}, + [331] = {.lex_state = 64, .external_lex_state = 9}, + [332] = {.lex_state = 64, .external_lex_state = 9}, + [333] = {.lex_state = 64, .external_lex_state = 9}, + [334] = {.lex_state = 64}, + [335] = {.lex_state = 64}, [336] = {.lex_state = 5}, [337] = {.lex_state = 5}, - [338] = {.lex_state = 2}, - [339] = {.lex_state = 6}, - [340] = {.lex_state = 6}, - [341] = {.lex_state = 6}, - [342] = {.lex_state = 6}, + [338] = {.lex_state = 5}, + [339] = {.lex_state = 64}, + [340] = {.lex_state = 5}, + [341] = {.lex_state = 5}, + [342] = {.lex_state = 5}, [343] = {.lex_state = 5}, - [344] = {.lex_state = 6}, - [345] = {.lex_state = 2}, + [344] = {.lex_state = 5}, + [345] = {.lex_state = 5}, [346] = {.lex_state = 5}, - [347] = {.lex_state = 3}, - [348] = {.lex_state = 3}, - [349] = {.lex_state = 3}, - [350] = {.lex_state = 3}, - [351] = {.lex_state = 3}, - [352] = {.lex_state = 3}, - [353] = {.lex_state = 5, .external_lex_state = 9}, - [354] = {.lex_state = 64}, - [355] = {.lex_state = 64}, - [356] = {.lex_state = 3}, + [347] = {.lex_state = 2}, + [348] = {.lex_state = 6}, + [349] = {.lex_state = 6}, + [350] = {.lex_state = 6}, + [351] = {.lex_state = 6}, + [352] = {.lex_state = 5}, + [353] = {.lex_state = 5}, + [354] = {.lex_state = 2}, + [355] = {.lex_state = 6}, + [356] = {.lex_state = 5, .external_lex_state = 9}, [357] = {.lex_state = 3}, - [358] = {.lex_state = 64}, - [359] = {.lex_state = 3}, - [360] = {.lex_state = 64}, - [361] = {.lex_state = 64}, - [362] = {.lex_state = 3}, + [358] = {.lex_state = 3}, + [359] = {.lex_state = 64}, + [360] = {.lex_state = 3}, + [361] = {.lex_state = 3}, + [362] = {.lex_state = 64}, [363] = {.lex_state = 3}, [364] = {.lex_state = 3}, - [365] = {.lex_state = 5, .external_lex_state = 9}, + [365] = {.lex_state = 3}, [366] = {.lex_state = 5, .external_lex_state = 9}, - [367] = {.lex_state = 3}, - [368] = {.lex_state = 5, .external_lex_state = 9}, - [369] = {.lex_state = 4}, + [367] = {.lex_state = 64}, + [368] = {.lex_state = 64}, + [369] = {.lex_state = 3}, [370] = {.lex_state = 5, .external_lex_state = 9}, - [371] = {.lex_state = 6}, - [372] = {.lex_state = 5, .external_lex_state = 9}, - [373] = {.lex_state = 4}, - [374] = {.lex_state = 6}, - [375] = {.lex_state = 5, .external_lex_state = 9}, - [376] = {.lex_state = 5, .external_lex_state = 9}, - [377] = {.lex_state = 4}, + [371] = {.lex_state = 3}, + [372] = {.lex_state = 3}, + [373] = {.lex_state = 3}, + [374] = {.lex_state = 3}, + [375] = {.lex_state = 64}, + [376] = {.lex_state = 3}, + [377] = {.lex_state = 5, .external_lex_state = 9}, [378] = {.lex_state = 5, .external_lex_state = 9}, - [379] = {.lex_state = 5, .external_lex_state = 9}, - [380] = {.lex_state = 5, .external_lex_state = 9}, - [381] = {.lex_state = 5, .external_lex_state = 9}, - [382] = {.lex_state = 3}, - [383] = {.lex_state = 5, .external_lex_state = 9}, - [384] = {.lex_state = 3}, - [385] = {.lex_state = 0}, - [386] = {.lex_state = 5, .external_lex_state = 9}, + [379] = {.lex_state = 6}, + [380] = {.lex_state = 6}, + [381] = {.lex_state = 4}, + [382] = {.lex_state = 5, .external_lex_state = 9}, + [383] = {.lex_state = 4}, + [384] = {.lex_state = 5, .external_lex_state = 9}, + [385] = {.lex_state = 5, .external_lex_state = 9}, + [386] = {.lex_state = 4}, [387] = {.lex_state = 5, .external_lex_state = 9}, [388] = {.lex_state = 5, .external_lex_state = 9}, [389] = {.lex_state = 5, .external_lex_state = 9}, [390] = {.lex_state = 5, .external_lex_state = 9}, - [391] = {.lex_state = 5, .external_lex_state = 9}, - [392] = {.lex_state = 5}, - [393] = {.lex_state = 0}, - [394] = {.lex_state = 5}, - [395] = {.lex_state = 0}, - [396] = {.lex_state = 0}, - [397] = {.lex_state = 0}, - [398] = {.lex_state = 0}, - [399] = {.lex_state = 10}, - [400] = {.lex_state = 10}, - [401] = {.lex_state = 10}, - [402] = {.lex_state = 10}, + [391] = {.lex_state = 3}, + [392] = {.lex_state = 5, .external_lex_state = 9}, + [393] = {.lex_state = 5, .external_lex_state = 9}, + [394] = {.lex_state = 5, .external_lex_state = 9}, + [395] = {.lex_state = 5, .external_lex_state = 9}, + [396] = {.lex_state = 3}, + [397] = {.lex_state = 5, .external_lex_state = 9}, + [398] = {.lex_state = 5, .external_lex_state = 9}, + [399] = {.lex_state = 5, .external_lex_state = 9}, + [400] = {.lex_state = 5}, + [401] = {.lex_state = 0}, + [402] = {.lex_state = 0}, [403] = {.lex_state = 0}, - [404] = {.lex_state = 10}, - [405] = {.lex_state = 10}, - [406] = {.lex_state = 10}, - [407] = {.lex_state = 10}, + [404] = {.lex_state = 0}, + [405] = {.lex_state = 5}, + [406] = {.lex_state = 0}, + [407] = {.lex_state = 0}, [408] = {.lex_state = 10}, [409] = {.lex_state = 10}, - [410] = {.lex_state = 7}, + [410] = {.lex_state = 10}, [411] = {.lex_state = 10}, [412] = {.lex_state = 10}, [413] = {.lex_state = 10}, - [414] = {.lex_state = 0}, - [415] = {.lex_state = 0}, - [416] = {.lex_state = 0}, - [417] = {.lex_state = 0}, - [418] = {.lex_state = 0}, - [419] = {.lex_state = 0}, - [420] = {.lex_state = 7}, - [421] = {.lex_state = 0}, + [414] = {.lex_state = 10}, + [415] = {.lex_state = 10}, + [416] = {.lex_state = 10}, + [417] = {.lex_state = 10}, + [418] = {.lex_state = 10}, + [419] = {.lex_state = 10}, + [420] = {.lex_state = 10}, + [421] = {.lex_state = 7}, [422] = {.lex_state = 0}, [423] = {.lex_state = 0}, [424] = {.lex_state = 0}, [425] = {.lex_state = 0}, - [426] = {.lex_state = 0, .external_lex_state = 10}, + [426] = {.lex_state = 0}, [427] = {.lex_state = 0}, [428] = {.lex_state = 0}, - [429] = {.lex_state = 0}, - [430] = {.lex_state = 0, .external_lex_state = 10}, - [431] = {.lex_state = 0}, + [429] = {.lex_state = 7}, + [430] = {.lex_state = 0}, + [431] = {.lex_state = 0, .external_lex_state = 10}, [432] = {.lex_state = 0}, - [433] = {.lex_state = 0, .external_lex_state = 10}, - [434] = {.lex_state = 62}, - [435] = {.lex_state = 11}, + [433] = {.lex_state = 0}, + [434] = {.lex_state = 0}, + [435] = {.lex_state = 0}, [436] = {.lex_state = 0}, - [437] = {.lex_state = 0, .external_lex_state = 10}, - [438] = {.lex_state = 62}, - [439] = {.lex_state = 0, .external_lex_state = 10}, - [440] = {.lex_state = 0, .external_lex_state = 10}, - [441] = {.lex_state = 0, .external_lex_state = 10}, + [437] = {.lex_state = 0}, + [438] = {.lex_state = 0, .external_lex_state = 10}, + [439] = {.lex_state = 0}, + [440] = {.lex_state = 0}, + [441] = {.lex_state = 0}, [442] = {.lex_state = 0, .external_lex_state = 10}, - [443] = {.lex_state = 0}, - [444] = {.lex_state = 0, .external_lex_state = 11}, + [443] = {.lex_state = 0, .external_lex_state = 10}, + [444] = {.lex_state = 11}, [445] = {.lex_state = 0, .external_lex_state = 10}, [446] = {.lex_state = 0, .external_lex_state = 10}, - [447] = {.lex_state = 0, .external_lex_state = 10}, + [447] = {.lex_state = 0}, [448] = {.lex_state = 0, .external_lex_state = 10}, [449] = {.lex_state = 0}, [450] = {.lex_state = 0}, - [451] = {.lex_state = 12}, - [452] = {.lex_state = 0}, - [453] = {.lex_state = 0}, - [454] = {.lex_state = 0}, - [455] = {.lex_state = 0}, - [456] = {.lex_state = 0}, - [457] = {.lex_state = 0}, - [458] = {.lex_state = 0}, + [451] = {.lex_state = 62}, + [452] = {.lex_state = 62}, + [453] = {.lex_state = 0, .external_lex_state = 10}, + [454] = {.lex_state = 0, .external_lex_state = 10}, + [455] = {.lex_state = 0, .external_lex_state = 10}, + [456] = {.lex_state = 0, .external_lex_state = 10}, + [457] = {.lex_state = 0, .external_lex_state = 11}, + [458] = {.lex_state = 0, .external_lex_state = 10}, [459] = {.lex_state = 0}, - [460] = {.lex_state = 0}, + [460] = {.lex_state = 0, .external_lex_state = 11}, [461] = {.lex_state = 0}, [462] = {.lex_state = 0}, [463] = {.lex_state = 0}, [464] = {.lex_state = 0}, - [465] = {.lex_state = 0, .external_lex_state = 9}, + [465] = {.lex_state = 0}, [466] = {.lex_state = 0}, [467] = {.lex_state = 0}, - [468] = {.lex_state = 0, .external_lex_state = 9}, + [468] = {.lex_state = 0}, [469] = {.lex_state = 0}, - [470] = {.lex_state = 6}, + [470] = {.lex_state = 0}, [471] = {.lex_state = 0}, [472] = {.lex_state = 0}, - [473] = {.lex_state = 0}, + [473] = {.lex_state = 6}, [474] = {.lex_state = 0}, - [475] = {.lex_state = 0}, + [475] = {.lex_state = 1}, [476] = {.lex_state = 0}, - [477] = {.lex_state = 0}, + [477] = {.lex_state = 0, .external_lex_state = 9}, [478] = {.lex_state = 0}, [479] = {.lex_state = 0}, - [480] = {.lex_state = 0, .external_lex_state = 12}, - [481] = {.lex_state = 0}, - [482] = {.lex_state = 0, .external_lex_state = 11}, + [480] = {.lex_state = 0}, + [481] = {.lex_state = 0, .external_lex_state = 9}, + [482] = {.lex_state = 0}, [483] = {.lex_state = 0}, [484] = {.lex_state = 0}, - [485] = {.lex_state = 0, .external_lex_state = 12}, - [486] = {.lex_state = 0}, + [485] = {.lex_state = 0}, + [486] = {.lex_state = 0, .external_lex_state = 12}, [487] = {.lex_state = 0}, [488] = {.lex_state = 0}, - [489] = {.lex_state = 1}, + [489] = {.lex_state = 0}, [490] = {.lex_state = 0}, - [491] = {.lex_state = 1}, + [491] = {.lex_state = 0}, [492] = {.lex_state = 0}, [493] = {.lex_state = 0}, - [494] = {.lex_state = 0, .external_lex_state = 12}, + [494] = {.lex_state = 0}, + [495] = {.lex_state = 0}, + [496] = {.lex_state = 0}, + [497] = {.lex_state = 12}, + [498] = {.lex_state = 0, .external_lex_state = 12}, + [499] = {.lex_state = 0}, + [500] = {.lex_state = 0}, + [501] = {.lex_state = 1}, + [502] = {.lex_state = 0}, + [503] = {.lex_state = 0, .external_lex_state = 12}, }; enum { @@ -4786,80 +4862,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__concat_pf_dot] = ACTIONS(1), }, [1] = { - [sym_commands] = STATE(481), - [sym__command] = STATE(395), - [sym_legacy_quoted_command] = STATE(168), - [sym__simple_command] = STATE(168), - [sym__tmp_command] = STATE(168), - [sym__iter_command] = STATE(168), - [sym__pipe_command] = STATE(168), - [sym_grep_command] = STATE(168), - [sym_html_disable_command] = STATE(168), - [sym_html_enable_command] = STATE(168), - [sym_pipe_command] = STATE(168), - [sym_iter_file_lines_command] = STATE(168), - [sym_iter_offsets_command] = STATE(168), - [sym_iter_offsetssizes_command] = STATE(168), - [sym_iter_hit_command] = STATE(168), - [sym_iter_interpret_command] = STATE(168), - [sym_iter_interpret_offsetssizes_command] = STATE(168), - [sym_iter_comment_command] = STATE(168), - [sym_iter_dbta_command] = STATE(168), - [sym_iter_dbtb_command] = STATE(168), - [sym_iter_dbts_command] = STATE(168), - [sym_iter_threads_command] = STATE(168), - [sym_iter_bbs_command] = STATE(168), - [sym_iter_instrs_command] = STATE(168), - [sym_iter_import_command] = STATE(168), - [sym_iter_sections_command] = STATE(168), - [sym_iter_segments_command] = STATE(168), - [sym_iter_symbol_command] = STATE(168), - [sym_iter_string_command] = STATE(168), - [sym_iter_flags_command] = STATE(168), - [sym_iter_function_command] = STATE(168), - [sym_iter_iomap_command] = STATE(168), - [sym_iter_dbgmap_command] = STATE(168), - [sym_iter_register_command] = STATE(168), - [sym_iter_step_command] = STATE(168), - [sym_tmp_seek_command] = STATE(168), - [sym_tmp_blksz_command] = STATE(168), - [sym_tmp_fromto_command] = STATE(168), - [sym_tmp_arch_command] = STATE(168), - [sym_tmp_bits_command] = STATE(168), - [sym_tmp_nthi_command] = STATE(168), - [sym_tmp_eval_command] = STATE(168), - [sym_tmp_fs_command] = STATE(168), - [sym_tmp_reli_command] = STATE(168), - [sym_tmp_kuery_command] = STATE(168), - [sym_tmp_fd_command] = STATE(168), - [sym_tmp_reg_command] = STATE(168), - [sym_tmp_file_command] = STATE(168), - [sym_tmp_string_command] = STATE(168), - [sym_tmp_value_command] = STATE(168), - [sym_tmp_hex_command] = STATE(168), - [sym_number_command] = STATE(168), - [sym_help_command] = STATE(168), - [sym_arged_command] = STATE(168), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(168), - [sym_Cf_cmd] = STATE(168), - [sym_pf_new_cmd] = STATE(168), - [sym_pf_dot_cmd] = STATE(168), - [sym_pf_cmd] = STATE(168), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(168), - [sym_redirect_command] = STATE(395), + [sym_commands] = STATE(495), + [sym__command] = STATE(407), + [sym_legacy_quoted_command] = STATE(160), + [sym__simple_command] = STATE(160), + [sym__tmp_command] = STATE(160), + [sym__iter_command] = STATE(160), + [sym__pipe_command] = STATE(160), + [sym_grep_command] = STATE(160), + [sym_html_disable_command] = STATE(160), + [sym_html_enable_command] = STATE(160), + [sym_pipe_command] = STATE(160), + [sym_iter_file_lines_command] = STATE(160), + [sym_iter_offsets_command] = STATE(160), + [sym_iter_offsetssizes_command] = STATE(160), + [sym_iter_hit_command] = STATE(160), + [sym_iter_interpret_command] = STATE(160), + [sym_iter_interpret_offsetssizes_command] = STATE(160), + [sym_iter_comment_command] = STATE(160), + [sym_iter_dbta_command] = STATE(160), + [sym_iter_dbtb_command] = STATE(160), + [sym_iter_dbts_command] = STATE(160), + [sym_iter_threads_command] = STATE(160), + [sym_iter_bbs_command] = STATE(160), + [sym_iter_instrs_command] = STATE(160), + [sym_iter_import_command] = STATE(160), + [sym_iter_sections_command] = STATE(160), + [sym_iter_segments_command] = STATE(160), + [sym_iter_symbol_command] = STATE(160), + [sym_iter_string_command] = STATE(160), + [sym_iter_flags_command] = STATE(160), + [sym_iter_function_command] = STATE(160), + [sym_iter_iomap_command] = STATE(160), + [sym_iter_dbgmap_command] = STATE(160), + [sym_iter_register_command] = STATE(160), + [sym_iter_step_command] = STATE(160), + [sym_tmp_seek_command] = STATE(160), + [sym_tmp_blksz_command] = STATE(160), + [sym_tmp_fromto_command] = STATE(160), + [sym_tmp_arch_command] = STATE(160), + [sym_tmp_bits_command] = STATE(160), + [sym_tmp_nthi_command] = STATE(160), + [sym_tmp_eval_command] = STATE(160), + [sym_tmp_fs_command] = STATE(160), + [sym_tmp_reli_command] = STATE(160), + [sym_tmp_kuery_command] = STATE(160), + [sym_tmp_fd_command] = STATE(160), + [sym_tmp_reg_command] = STATE(160), + [sym_tmp_file_command] = STATE(160), + [sym_tmp_string_command] = STATE(160), + [sym_tmp_value_command] = STATE(160), + [sym_tmp_hex_command] = STATE(160), + [sym_number_command] = STATE(160), + [sym_help_command] = STATE(160), + [sym_arged_command] = STATE(160), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(160), + [sym_Cf_cmd] = STATE(160), + [sym_pf_new_cmd] = STATE(160), + [sym_pf_dot_cmd] = STATE(160), + [sym_pf_cmd] = STATE(160), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(160), + [sym_redirect_command] = STATE(407), [sym__dec_number] = STATE(2), [aux_sym_commands_repeat1] = STATE(6), [ts_builtin_sym_end] = ACTIONS(5), @@ -4894,77 +4970,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__help_command] = ACTIONS(55), }, [2] = { - [sym_legacy_quoted_command] = STATE(199), - [sym__simple_command] = STATE(199), - [sym__tmp_command] = STATE(199), - [sym__iter_command] = STATE(199), - [sym__pipe_command] = STATE(199), - [sym_grep_command] = STATE(199), - [sym_html_disable_command] = STATE(199), - [sym_html_enable_command] = STATE(199), - [sym_pipe_command] = STATE(199), - [sym_iter_file_lines_command] = STATE(199), - [sym_iter_offsets_command] = STATE(199), - [sym_iter_offsetssizes_command] = STATE(199), - [sym_iter_hit_command] = STATE(199), - [sym_iter_interpret_command] = STATE(199), - [sym_iter_interpret_offsetssizes_command] = STATE(199), - [sym_iter_comment_command] = STATE(199), - [sym_iter_dbta_command] = STATE(199), - [sym_iter_dbtb_command] = STATE(199), - [sym_iter_dbts_command] = STATE(199), - [sym_iter_threads_command] = STATE(199), - [sym_iter_bbs_command] = STATE(199), - [sym_iter_instrs_command] = STATE(199), - [sym_iter_import_command] = STATE(199), - [sym_iter_sections_command] = STATE(199), - [sym_iter_segments_command] = STATE(199), - [sym_iter_symbol_command] = STATE(199), - [sym_iter_string_command] = STATE(199), - [sym_iter_flags_command] = STATE(199), - [sym_iter_function_command] = STATE(199), - [sym_iter_iomap_command] = STATE(199), - [sym_iter_dbgmap_command] = STATE(199), - [sym_iter_register_command] = STATE(199), - [sym_iter_step_command] = STATE(199), - [sym_tmp_seek_command] = STATE(199), - [sym_tmp_blksz_command] = STATE(199), - [sym_tmp_fromto_command] = STATE(199), - [sym_tmp_arch_command] = STATE(199), - [sym_tmp_bits_command] = STATE(199), - [sym_tmp_nthi_command] = STATE(199), - [sym_tmp_eval_command] = STATE(199), - [sym_tmp_fs_command] = STATE(199), - [sym_tmp_reli_command] = STATE(199), - [sym_tmp_kuery_command] = STATE(199), - [sym_tmp_fd_command] = STATE(199), - [sym_tmp_reg_command] = STATE(199), - [sym_tmp_file_command] = STATE(199), - [sym_tmp_string_command] = STATE(199), - [sym_tmp_value_command] = STATE(199), - [sym_tmp_hex_command] = STATE(199), - [sym_number_command] = STATE(199), - [sym_help_command] = STATE(199), - [sym_arged_command] = STATE(199), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(199), - [sym_Cf_cmd] = STATE(199), - [sym_pf_new_cmd] = STATE(199), - [sym_pf_dot_cmd] = STATE(199), - [sym_pf_cmd] = STATE(199), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(199), + [sym_legacy_quoted_command] = STATE(188), + [sym__simple_command] = STATE(188), + [sym__tmp_command] = STATE(188), + [sym__iter_command] = STATE(188), + [sym__pipe_command] = STATE(188), + [sym_grep_command] = STATE(188), + [sym_html_disable_command] = STATE(188), + [sym_html_enable_command] = STATE(188), + [sym_pipe_command] = STATE(188), + [sym_iter_file_lines_command] = STATE(188), + [sym_iter_offsets_command] = STATE(188), + [sym_iter_offsetssizes_command] = STATE(188), + [sym_iter_hit_command] = STATE(188), + [sym_iter_interpret_command] = STATE(188), + [sym_iter_interpret_offsetssizes_command] = STATE(188), + [sym_iter_comment_command] = STATE(188), + [sym_iter_dbta_command] = STATE(188), + [sym_iter_dbtb_command] = STATE(188), + [sym_iter_dbts_command] = STATE(188), + [sym_iter_threads_command] = STATE(188), + [sym_iter_bbs_command] = STATE(188), + [sym_iter_instrs_command] = STATE(188), + [sym_iter_import_command] = STATE(188), + [sym_iter_sections_command] = STATE(188), + [sym_iter_segments_command] = STATE(188), + [sym_iter_symbol_command] = STATE(188), + [sym_iter_string_command] = STATE(188), + [sym_iter_flags_command] = STATE(188), + [sym_iter_function_command] = STATE(188), + [sym_iter_iomap_command] = STATE(188), + [sym_iter_dbgmap_command] = STATE(188), + [sym_iter_register_command] = STATE(188), + [sym_iter_step_command] = STATE(188), + [sym_tmp_seek_command] = STATE(188), + [sym_tmp_blksz_command] = STATE(188), + [sym_tmp_fromto_command] = STATE(188), + [sym_tmp_arch_command] = STATE(188), + [sym_tmp_bits_command] = STATE(188), + [sym_tmp_nthi_command] = STATE(188), + [sym_tmp_eval_command] = STATE(188), + [sym_tmp_fs_command] = STATE(188), + [sym_tmp_reli_command] = STATE(188), + [sym_tmp_kuery_command] = STATE(188), + [sym_tmp_fd_command] = STATE(188), + [sym_tmp_reg_command] = STATE(188), + [sym_tmp_file_command] = STATE(188), + [sym_tmp_string_command] = STATE(188), + [sym_tmp_value_command] = STATE(188), + [sym_tmp_hex_command] = STATE(188), + [sym_number_command] = STATE(188), + [sym_help_command] = STATE(188), + [sym_arged_command] = STATE(188), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(188), + [sym_Cf_cmd] = STATE(188), + [sym_pf_new_cmd] = STATE(188), + [sym_pf_dot_cmd] = STATE(188), + [sym_pf_cmd] = STATE(188), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(188), [sym__dec_number] = STATE(2), [ts_builtin_sym_end] = ACTIONS(57), [anon_sym_DQUOTE] = ACTIONS(7), @@ -5049,77 +5125,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(57), }, [3] = { - [sym_legacy_quoted_command] = STATE(208), - [sym__simple_command] = STATE(208), - [sym__tmp_command] = STATE(208), - [sym__iter_command] = STATE(208), - [sym__pipe_command] = STATE(208), - [sym_grep_command] = STATE(208), - [sym_html_disable_command] = STATE(208), - [sym_html_enable_command] = STATE(208), - [sym_pipe_command] = STATE(208), - [sym_iter_file_lines_command] = STATE(208), - [sym_iter_offsets_command] = STATE(208), - [sym_iter_offsetssizes_command] = STATE(208), - [sym_iter_hit_command] = STATE(208), - [sym_iter_interpret_command] = STATE(208), - [sym_iter_interpret_offsetssizes_command] = STATE(208), - [sym_iter_comment_command] = STATE(208), - [sym_iter_dbta_command] = STATE(208), - [sym_iter_dbtb_command] = STATE(208), - [sym_iter_dbts_command] = STATE(208), - [sym_iter_threads_command] = STATE(208), - [sym_iter_bbs_command] = STATE(208), - [sym_iter_instrs_command] = STATE(208), - [sym_iter_import_command] = STATE(208), - [sym_iter_sections_command] = STATE(208), - [sym_iter_segments_command] = STATE(208), - [sym_iter_symbol_command] = STATE(208), - [sym_iter_string_command] = STATE(208), - [sym_iter_flags_command] = STATE(208), - [sym_iter_function_command] = STATE(208), - [sym_iter_iomap_command] = STATE(208), - [sym_iter_dbgmap_command] = STATE(208), - [sym_iter_register_command] = STATE(208), - [sym_iter_step_command] = STATE(208), - [sym_tmp_seek_command] = STATE(208), - [sym_tmp_blksz_command] = STATE(208), - [sym_tmp_fromto_command] = STATE(208), - [sym_tmp_arch_command] = STATE(208), - [sym_tmp_bits_command] = STATE(208), - [sym_tmp_nthi_command] = STATE(208), - [sym_tmp_eval_command] = STATE(208), - [sym_tmp_fs_command] = STATE(208), - [sym_tmp_reli_command] = STATE(208), - [sym_tmp_kuery_command] = STATE(208), - [sym_tmp_fd_command] = STATE(208), - [sym_tmp_reg_command] = STATE(208), - [sym_tmp_file_command] = STATE(208), - [sym_tmp_string_command] = STATE(208), - [sym_tmp_value_command] = STATE(208), - [sym_tmp_hex_command] = STATE(208), - [sym_number_command] = STATE(208), - [sym_help_command] = STATE(208), - [sym_arged_command] = STATE(208), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(208), - [sym_Cf_cmd] = STATE(208), - [sym_pf_new_cmd] = STATE(208), - [sym_pf_dot_cmd] = STATE(208), - [sym_pf_cmd] = STATE(208), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(208), + [sym_legacy_quoted_command] = STATE(218), + [sym__simple_command] = STATE(218), + [sym__tmp_command] = STATE(218), + [sym__iter_command] = STATE(218), + [sym__pipe_command] = STATE(218), + [sym_grep_command] = STATE(218), + [sym_html_disable_command] = STATE(218), + [sym_html_enable_command] = STATE(218), + [sym_pipe_command] = STATE(218), + [sym_iter_file_lines_command] = STATE(218), + [sym_iter_offsets_command] = STATE(218), + [sym_iter_offsetssizes_command] = STATE(218), + [sym_iter_hit_command] = STATE(218), + [sym_iter_interpret_command] = STATE(218), + [sym_iter_interpret_offsetssizes_command] = STATE(218), + [sym_iter_comment_command] = STATE(218), + [sym_iter_dbta_command] = STATE(218), + [sym_iter_dbtb_command] = STATE(218), + [sym_iter_dbts_command] = STATE(218), + [sym_iter_threads_command] = STATE(218), + [sym_iter_bbs_command] = STATE(218), + [sym_iter_instrs_command] = STATE(218), + [sym_iter_import_command] = STATE(218), + [sym_iter_sections_command] = STATE(218), + [sym_iter_segments_command] = STATE(218), + [sym_iter_symbol_command] = STATE(218), + [sym_iter_string_command] = STATE(218), + [sym_iter_flags_command] = STATE(218), + [sym_iter_function_command] = STATE(218), + [sym_iter_iomap_command] = STATE(218), + [sym_iter_dbgmap_command] = STATE(218), + [sym_iter_register_command] = STATE(218), + [sym_iter_step_command] = STATE(218), + [sym_tmp_seek_command] = STATE(218), + [sym_tmp_blksz_command] = STATE(218), + [sym_tmp_fromto_command] = STATE(218), + [sym_tmp_arch_command] = STATE(218), + [sym_tmp_bits_command] = STATE(218), + [sym_tmp_nthi_command] = STATE(218), + [sym_tmp_eval_command] = STATE(218), + [sym_tmp_fs_command] = STATE(218), + [sym_tmp_reli_command] = STATE(218), + [sym_tmp_kuery_command] = STATE(218), + [sym_tmp_fd_command] = STATE(218), + [sym_tmp_reg_command] = STATE(218), + [sym_tmp_file_command] = STATE(218), + [sym_tmp_string_command] = STATE(218), + [sym_tmp_value_command] = STATE(218), + [sym_tmp_hex_command] = STATE(218), + [sym_number_command] = STATE(218), + [sym_help_command] = STATE(218), + [sym_arged_command] = STATE(218), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(218), + [sym_Cf_cmd] = STATE(218), + [sym_pf_new_cmd] = STATE(218), + [sym_pf_dot_cmd] = STATE(218), + [sym_pf_cmd] = STATE(218), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(218), [sym__dec_number] = STATE(2), [ts_builtin_sym_end] = ACTIONS(61), [anon_sym_DQUOTE] = ACTIONS(7), @@ -5204,77 +5280,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(61), }, [4] = { - [sym_legacy_quoted_command] = STATE(208), - [sym__simple_command] = STATE(208), - [sym__tmp_command] = STATE(208), - [sym__iter_command] = STATE(208), - [sym__pipe_command] = STATE(208), - [sym_grep_command] = STATE(208), - [sym_html_disable_command] = STATE(208), - [sym_html_enable_command] = STATE(208), - [sym_pipe_command] = STATE(208), - [sym_iter_file_lines_command] = STATE(208), - [sym_iter_offsets_command] = STATE(208), - [sym_iter_offsetssizes_command] = STATE(208), - [sym_iter_hit_command] = STATE(208), - [sym_iter_interpret_command] = STATE(208), - [sym_iter_interpret_offsetssizes_command] = STATE(208), - [sym_iter_comment_command] = STATE(208), - [sym_iter_dbta_command] = STATE(208), - [sym_iter_dbtb_command] = STATE(208), - [sym_iter_dbts_command] = STATE(208), - [sym_iter_threads_command] = STATE(208), - [sym_iter_bbs_command] = STATE(208), - [sym_iter_instrs_command] = STATE(208), - [sym_iter_import_command] = STATE(208), - [sym_iter_sections_command] = STATE(208), - [sym_iter_segments_command] = STATE(208), - [sym_iter_symbol_command] = STATE(208), - [sym_iter_string_command] = STATE(208), - [sym_iter_flags_command] = STATE(208), - [sym_iter_function_command] = STATE(208), - [sym_iter_iomap_command] = STATE(208), - [sym_iter_dbgmap_command] = STATE(208), - [sym_iter_register_command] = STATE(208), - [sym_iter_step_command] = STATE(208), - [sym_tmp_seek_command] = STATE(208), - [sym_tmp_blksz_command] = STATE(208), - [sym_tmp_fromto_command] = STATE(208), - [sym_tmp_arch_command] = STATE(208), - [sym_tmp_bits_command] = STATE(208), - [sym_tmp_nthi_command] = STATE(208), - [sym_tmp_eval_command] = STATE(208), - [sym_tmp_fs_command] = STATE(208), - [sym_tmp_reli_command] = STATE(208), - [sym_tmp_kuery_command] = STATE(208), - [sym_tmp_fd_command] = STATE(208), - [sym_tmp_reg_command] = STATE(208), - [sym_tmp_file_command] = STATE(208), - [sym_tmp_string_command] = STATE(208), - [sym_tmp_value_command] = STATE(208), - [sym_tmp_hex_command] = STATE(208), - [sym_number_command] = STATE(208), - [sym_help_command] = STATE(208), - [sym_arged_command] = STATE(208), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(274), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(208), - [sym_Cf_cmd] = STATE(208), - [sym_pf_new_cmd] = STATE(208), - [sym_pf_dot_cmd] = STATE(208), - [sym_pf_cmd] = STATE(208), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(90), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(208), + [sym_legacy_quoted_command] = STATE(218), + [sym__simple_command] = STATE(218), + [sym__tmp_command] = STATE(218), + [sym__iter_command] = STATE(218), + [sym__pipe_command] = STATE(218), + [sym_grep_command] = STATE(218), + [sym_html_disable_command] = STATE(218), + [sym_html_enable_command] = STATE(218), + [sym_pipe_command] = STATE(218), + [sym_iter_file_lines_command] = STATE(218), + [sym_iter_offsets_command] = STATE(218), + [sym_iter_offsetssizes_command] = STATE(218), + [sym_iter_hit_command] = STATE(218), + [sym_iter_interpret_command] = STATE(218), + [sym_iter_interpret_offsetssizes_command] = STATE(218), + [sym_iter_comment_command] = STATE(218), + [sym_iter_dbta_command] = STATE(218), + [sym_iter_dbtb_command] = STATE(218), + [sym_iter_dbts_command] = STATE(218), + [sym_iter_threads_command] = STATE(218), + [sym_iter_bbs_command] = STATE(218), + [sym_iter_instrs_command] = STATE(218), + [sym_iter_import_command] = STATE(218), + [sym_iter_sections_command] = STATE(218), + [sym_iter_segments_command] = STATE(218), + [sym_iter_symbol_command] = STATE(218), + [sym_iter_string_command] = STATE(218), + [sym_iter_flags_command] = STATE(218), + [sym_iter_function_command] = STATE(218), + [sym_iter_iomap_command] = STATE(218), + [sym_iter_dbgmap_command] = STATE(218), + [sym_iter_register_command] = STATE(218), + [sym_iter_step_command] = STATE(218), + [sym_tmp_seek_command] = STATE(218), + [sym_tmp_blksz_command] = STATE(218), + [sym_tmp_fromto_command] = STATE(218), + [sym_tmp_arch_command] = STATE(218), + [sym_tmp_bits_command] = STATE(218), + [sym_tmp_nthi_command] = STATE(218), + [sym_tmp_eval_command] = STATE(218), + [sym_tmp_fs_command] = STATE(218), + [sym_tmp_reli_command] = STATE(218), + [sym_tmp_kuery_command] = STATE(218), + [sym_tmp_fd_command] = STATE(218), + [sym_tmp_reg_command] = STATE(218), + [sym_tmp_file_command] = STATE(218), + [sym_tmp_string_command] = STATE(218), + [sym_tmp_value_command] = STATE(218), + [sym_tmp_hex_command] = STATE(218), + [sym_number_command] = STATE(218), + [sym_help_command] = STATE(218), + [sym_arged_command] = STATE(218), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(281), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(218), + [sym_Cf_cmd] = STATE(218), + [sym_pf_new_cmd] = STATE(218), + [sym_pf_dot_cmd] = STATE(218), + [sym_pf_cmd] = STATE(218), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(91), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(218), [sym__dec_number] = STATE(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(61), @@ -5356,77 +5432,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(61), }, [5] = { - [sym_legacy_quoted_command] = STATE(199), - [sym__simple_command] = STATE(199), - [sym__tmp_command] = STATE(199), - [sym__iter_command] = STATE(199), - [sym__pipe_command] = STATE(199), - [sym_grep_command] = STATE(199), - [sym_html_disable_command] = STATE(199), - [sym_html_enable_command] = STATE(199), - [sym_pipe_command] = STATE(199), - [sym_iter_file_lines_command] = STATE(199), - [sym_iter_offsets_command] = STATE(199), - [sym_iter_offsetssizes_command] = STATE(199), - [sym_iter_hit_command] = STATE(199), - [sym_iter_interpret_command] = STATE(199), - [sym_iter_interpret_offsetssizes_command] = STATE(199), - [sym_iter_comment_command] = STATE(199), - [sym_iter_dbta_command] = STATE(199), - [sym_iter_dbtb_command] = STATE(199), - [sym_iter_dbts_command] = STATE(199), - [sym_iter_threads_command] = STATE(199), - [sym_iter_bbs_command] = STATE(199), - [sym_iter_instrs_command] = STATE(199), - [sym_iter_import_command] = STATE(199), - [sym_iter_sections_command] = STATE(199), - [sym_iter_segments_command] = STATE(199), - [sym_iter_symbol_command] = STATE(199), - [sym_iter_string_command] = STATE(199), - [sym_iter_flags_command] = STATE(199), - [sym_iter_function_command] = STATE(199), - [sym_iter_iomap_command] = STATE(199), - [sym_iter_dbgmap_command] = STATE(199), - [sym_iter_register_command] = STATE(199), - [sym_iter_step_command] = STATE(199), - [sym_tmp_seek_command] = STATE(199), - [sym_tmp_blksz_command] = STATE(199), - [sym_tmp_fromto_command] = STATE(199), - [sym_tmp_arch_command] = STATE(199), - [sym_tmp_bits_command] = STATE(199), - [sym_tmp_nthi_command] = STATE(199), - [sym_tmp_eval_command] = STATE(199), - [sym_tmp_fs_command] = STATE(199), - [sym_tmp_reli_command] = STATE(199), - [sym_tmp_kuery_command] = STATE(199), - [sym_tmp_fd_command] = STATE(199), - [sym_tmp_reg_command] = STATE(199), - [sym_tmp_file_command] = STATE(199), - [sym_tmp_string_command] = STATE(199), - [sym_tmp_value_command] = STATE(199), - [sym_tmp_hex_command] = STATE(199), - [sym_number_command] = STATE(199), - [sym_help_command] = STATE(199), - [sym_arged_command] = STATE(199), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(274), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(199), - [sym_Cf_cmd] = STATE(199), - [sym_pf_new_cmd] = STATE(199), - [sym_pf_dot_cmd] = STATE(199), - [sym_pf_cmd] = STATE(199), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(90), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(199), + [sym_legacy_quoted_command] = STATE(188), + [sym__simple_command] = STATE(188), + [sym__tmp_command] = STATE(188), + [sym__iter_command] = STATE(188), + [sym__pipe_command] = STATE(188), + [sym_grep_command] = STATE(188), + [sym_html_disable_command] = STATE(188), + [sym_html_enable_command] = STATE(188), + [sym_pipe_command] = STATE(188), + [sym_iter_file_lines_command] = STATE(188), + [sym_iter_offsets_command] = STATE(188), + [sym_iter_offsetssizes_command] = STATE(188), + [sym_iter_hit_command] = STATE(188), + [sym_iter_interpret_command] = STATE(188), + [sym_iter_interpret_offsetssizes_command] = STATE(188), + [sym_iter_comment_command] = STATE(188), + [sym_iter_dbta_command] = STATE(188), + [sym_iter_dbtb_command] = STATE(188), + [sym_iter_dbts_command] = STATE(188), + [sym_iter_threads_command] = STATE(188), + [sym_iter_bbs_command] = STATE(188), + [sym_iter_instrs_command] = STATE(188), + [sym_iter_import_command] = STATE(188), + [sym_iter_sections_command] = STATE(188), + [sym_iter_segments_command] = STATE(188), + [sym_iter_symbol_command] = STATE(188), + [sym_iter_string_command] = STATE(188), + [sym_iter_flags_command] = STATE(188), + [sym_iter_function_command] = STATE(188), + [sym_iter_iomap_command] = STATE(188), + [sym_iter_dbgmap_command] = STATE(188), + [sym_iter_register_command] = STATE(188), + [sym_iter_step_command] = STATE(188), + [sym_tmp_seek_command] = STATE(188), + [sym_tmp_blksz_command] = STATE(188), + [sym_tmp_fromto_command] = STATE(188), + [sym_tmp_arch_command] = STATE(188), + [sym_tmp_bits_command] = STATE(188), + [sym_tmp_nthi_command] = STATE(188), + [sym_tmp_eval_command] = STATE(188), + [sym_tmp_fs_command] = STATE(188), + [sym_tmp_reli_command] = STATE(188), + [sym_tmp_kuery_command] = STATE(188), + [sym_tmp_fd_command] = STATE(188), + [sym_tmp_reg_command] = STATE(188), + [sym_tmp_file_command] = STATE(188), + [sym_tmp_string_command] = STATE(188), + [sym_tmp_value_command] = STATE(188), + [sym_tmp_hex_command] = STATE(188), + [sym_number_command] = STATE(188), + [sym_help_command] = STATE(188), + [sym_arged_command] = STATE(188), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(281), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(188), + [sym_Cf_cmd] = STATE(188), + [sym_pf_new_cmd] = STATE(188), + [sym_pf_dot_cmd] = STATE(188), + [sym_pf_cmd] = STATE(188), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(91), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(188), [sym__dec_number] = STATE(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_TILDE] = ACTIONS(57), @@ -5508,81 +5584,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(57), }, [6] = { - [sym__command] = STATE(397), - [sym_legacy_quoted_command] = STATE(168), - [sym__simple_command] = STATE(168), - [sym__tmp_command] = STATE(168), - [sym__iter_command] = STATE(168), - [sym__pipe_command] = STATE(168), - [sym_grep_command] = STATE(168), - [sym_html_disable_command] = STATE(168), - [sym_html_enable_command] = STATE(168), - [sym_pipe_command] = STATE(168), - [sym_iter_file_lines_command] = STATE(168), - [sym_iter_offsets_command] = STATE(168), - [sym_iter_offsetssizes_command] = STATE(168), - [sym_iter_hit_command] = STATE(168), - [sym_iter_interpret_command] = STATE(168), - [sym_iter_interpret_offsetssizes_command] = STATE(168), - [sym_iter_comment_command] = STATE(168), - [sym_iter_dbta_command] = STATE(168), - [sym_iter_dbtb_command] = STATE(168), - [sym_iter_dbts_command] = STATE(168), - [sym_iter_threads_command] = STATE(168), - [sym_iter_bbs_command] = STATE(168), - [sym_iter_instrs_command] = STATE(168), - [sym_iter_import_command] = STATE(168), - [sym_iter_sections_command] = STATE(168), - [sym_iter_segments_command] = STATE(168), - [sym_iter_symbol_command] = STATE(168), - [sym_iter_string_command] = STATE(168), - [sym_iter_flags_command] = STATE(168), - [sym_iter_function_command] = STATE(168), - [sym_iter_iomap_command] = STATE(168), - [sym_iter_dbgmap_command] = STATE(168), - [sym_iter_register_command] = STATE(168), - [sym_iter_step_command] = STATE(168), - [sym_tmp_seek_command] = STATE(168), - [sym_tmp_blksz_command] = STATE(168), - [sym_tmp_fromto_command] = STATE(168), - [sym_tmp_arch_command] = STATE(168), - [sym_tmp_bits_command] = STATE(168), - [sym_tmp_nthi_command] = STATE(168), - [sym_tmp_eval_command] = STATE(168), - [sym_tmp_fs_command] = STATE(168), - [sym_tmp_reli_command] = STATE(168), - [sym_tmp_kuery_command] = STATE(168), - [sym_tmp_fd_command] = STATE(168), - [sym_tmp_reg_command] = STATE(168), - [sym_tmp_file_command] = STATE(168), - [sym_tmp_string_command] = STATE(168), - [sym_tmp_value_command] = STATE(168), - [sym_tmp_hex_command] = STATE(168), - [sym_number_command] = STATE(168), - [sym_help_command] = STATE(168), - [sym_arged_command] = STATE(168), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(168), - [sym_Cf_cmd] = STATE(168), - [sym_pf_new_cmd] = STATE(168), - [sym_pf_dot_cmd] = STATE(168), - [sym_pf_cmd] = STATE(168), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(168), - [sym_redirect_command] = STATE(397), + [sym__command] = STATE(402), + [sym_legacy_quoted_command] = STATE(160), + [sym__simple_command] = STATE(160), + [sym__tmp_command] = STATE(160), + [sym__iter_command] = STATE(160), + [sym__pipe_command] = STATE(160), + [sym_grep_command] = STATE(160), + [sym_html_disable_command] = STATE(160), + [sym_html_enable_command] = STATE(160), + [sym_pipe_command] = STATE(160), + [sym_iter_file_lines_command] = STATE(160), + [sym_iter_offsets_command] = STATE(160), + [sym_iter_offsetssizes_command] = STATE(160), + [sym_iter_hit_command] = STATE(160), + [sym_iter_interpret_command] = STATE(160), + [sym_iter_interpret_offsetssizes_command] = STATE(160), + [sym_iter_comment_command] = STATE(160), + [sym_iter_dbta_command] = STATE(160), + [sym_iter_dbtb_command] = STATE(160), + [sym_iter_dbts_command] = STATE(160), + [sym_iter_threads_command] = STATE(160), + [sym_iter_bbs_command] = STATE(160), + [sym_iter_instrs_command] = STATE(160), + [sym_iter_import_command] = STATE(160), + [sym_iter_sections_command] = STATE(160), + [sym_iter_segments_command] = STATE(160), + [sym_iter_symbol_command] = STATE(160), + [sym_iter_string_command] = STATE(160), + [sym_iter_flags_command] = STATE(160), + [sym_iter_function_command] = STATE(160), + [sym_iter_iomap_command] = STATE(160), + [sym_iter_dbgmap_command] = STATE(160), + [sym_iter_register_command] = STATE(160), + [sym_iter_step_command] = STATE(160), + [sym_tmp_seek_command] = STATE(160), + [sym_tmp_blksz_command] = STATE(160), + [sym_tmp_fromto_command] = STATE(160), + [sym_tmp_arch_command] = STATE(160), + [sym_tmp_bits_command] = STATE(160), + [sym_tmp_nthi_command] = STATE(160), + [sym_tmp_eval_command] = STATE(160), + [sym_tmp_fs_command] = STATE(160), + [sym_tmp_reli_command] = STATE(160), + [sym_tmp_kuery_command] = STATE(160), + [sym_tmp_fd_command] = STATE(160), + [sym_tmp_reg_command] = STATE(160), + [sym_tmp_file_command] = STATE(160), + [sym_tmp_string_command] = STATE(160), + [sym_tmp_value_command] = STATE(160), + [sym_tmp_hex_command] = STATE(160), + [sym_number_command] = STATE(160), + [sym_help_command] = STATE(160), + [sym_arged_command] = STATE(160), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(160), + [sym_Cf_cmd] = STATE(160), + [sym_pf_new_cmd] = STATE(160), + [sym_pf_dot_cmd] = STATE(160), + [sym_pf_cmd] = STATE(160), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(160), + [sym_redirect_command] = STATE(402), [sym__dec_number] = STATE(2), - [aux_sym_commands_repeat1] = STATE(264), + [aux_sym_commands_repeat1] = STATE(273), [ts_builtin_sym_end] = ACTIONS(91), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_0] = ACTIONS(9), @@ -5615,79 +5691,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__help_command] = ACTIONS(55), }, [7] = { - [sym__command] = STATE(403), - [sym_legacy_quoted_command] = STATE(168), - [sym__simple_command] = STATE(168), - [sym__tmp_command] = STATE(168), - [sym__iter_command] = STATE(168), - [sym__pipe_command] = STATE(168), - [sym_grep_command] = STATE(168), - [sym_html_disable_command] = STATE(168), - [sym_html_enable_command] = STATE(168), - [sym_pipe_command] = STATE(168), - [sym_iter_file_lines_command] = STATE(168), - [sym_iter_offsets_command] = STATE(168), - [sym_iter_offsetssizes_command] = STATE(168), - [sym_iter_hit_command] = STATE(168), - [sym_iter_interpret_command] = STATE(168), - [sym_iter_interpret_offsetssizes_command] = STATE(168), - [sym_iter_comment_command] = STATE(168), - [sym_iter_dbta_command] = STATE(168), - [sym_iter_dbtb_command] = STATE(168), - [sym_iter_dbts_command] = STATE(168), - [sym_iter_threads_command] = STATE(168), - [sym_iter_bbs_command] = STATE(168), - [sym_iter_instrs_command] = STATE(168), - [sym_iter_import_command] = STATE(168), - [sym_iter_sections_command] = STATE(168), - [sym_iter_segments_command] = STATE(168), - [sym_iter_symbol_command] = STATE(168), - [sym_iter_string_command] = STATE(168), - [sym_iter_flags_command] = STATE(168), - [sym_iter_function_command] = STATE(168), - [sym_iter_iomap_command] = STATE(168), - [sym_iter_dbgmap_command] = STATE(168), - [sym_iter_register_command] = STATE(168), - [sym_iter_step_command] = STATE(168), - [sym_tmp_seek_command] = STATE(168), - [sym_tmp_blksz_command] = STATE(168), - [sym_tmp_fromto_command] = STATE(168), - [sym_tmp_arch_command] = STATE(168), - [sym_tmp_bits_command] = STATE(168), - [sym_tmp_nthi_command] = STATE(168), - [sym_tmp_eval_command] = STATE(168), - [sym_tmp_fs_command] = STATE(168), - [sym_tmp_reli_command] = STATE(168), - [sym_tmp_kuery_command] = STATE(168), - [sym_tmp_fd_command] = STATE(168), - [sym_tmp_reg_command] = STATE(168), - [sym_tmp_file_command] = STATE(168), - [sym_tmp_string_command] = STATE(168), - [sym_tmp_value_command] = STATE(168), - [sym_tmp_hex_command] = STATE(168), - [sym_number_command] = STATE(168), - [sym_help_command] = STATE(168), - [sym_arged_command] = STATE(168), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(168), - [sym_Cf_cmd] = STATE(168), - [sym_pf_new_cmd] = STATE(168), - [sym_pf_dot_cmd] = STATE(168), - [sym_pf_cmd] = STATE(168), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(168), - [sym_redirect_command] = STATE(403), + [sym__command] = STATE(422), + [sym_legacy_quoted_command] = STATE(160), + [sym__simple_command] = STATE(160), + [sym__tmp_command] = STATE(160), + [sym__iter_command] = STATE(160), + [sym__pipe_command] = STATE(160), + [sym_grep_command] = STATE(160), + [sym_html_disable_command] = STATE(160), + [sym_html_enable_command] = STATE(160), + [sym_pipe_command] = STATE(160), + [sym_iter_file_lines_command] = STATE(160), + [sym_iter_offsets_command] = STATE(160), + [sym_iter_offsetssizes_command] = STATE(160), + [sym_iter_hit_command] = STATE(160), + [sym_iter_interpret_command] = STATE(160), + [sym_iter_interpret_offsetssizes_command] = STATE(160), + [sym_iter_comment_command] = STATE(160), + [sym_iter_dbta_command] = STATE(160), + [sym_iter_dbtb_command] = STATE(160), + [sym_iter_dbts_command] = STATE(160), + [sym_iter_threads_command] = STATE(160), + [sym_iter_bbs_command] = STATE(160), + [sym_iter_instrs_command] = STATE(160), + [sym_iter_import_command] = STATE(160), + [sym_iter_sections_command] = STATE(160), + [sym_iter_segments_command] = STATE(160), + [sym_iter_symbol_command] = STATE(160), + [sym_iter_string_command] = STATE(160), + [sym_iter_flags_command] = STATE(160), + [sym_iter_function_command] = STATE(160), + [sym_iter_iomap_command] = STATE(160), + [sym_iter_dbgmap_command] = STATE(160), + [sym_iter_register_command] = STATE(160), + [sym_iter_step_command] = STATE(160), + [sym_tmp_seek_command] = STATE(160), + [sym_tmp_blksz_command] = STATE(160), + [sym_tmp_fromto_command] = STATE(160), + [sym_tmp_arch_command] = STATE(160), + [sym_tmp_bits_command] = STATE(160), + [sym_tmp_nthi_command] = STATE(160), + [sym_tmp_eval_command] = STATE(160), + [sym_tmp_fs_command] = STATE(160), + [sym_tmp_reli_command] = STATE(160), + [sym_tmp_kuery_command] = STATE(160), + [sym_tmp_fd_command] = STATE(160), + [sym_tmp_reg_command] = STATE(160), + [sym_tmp_file_command] = STATE(160), + [sym_tmp_string_command] = STATE(160), + [sym_tmp_value_command] = STATE(160), + [sym_tmp_hex_command] = STATE(160), + [sym_number_command] = STATE(160), + [sym_help_command] = STATE(160), + [sym_arged_command] = STATE(160), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(160), + [sym_Cf_cmd] = STATE(160), + [sym_pf_new_cmd] = STATE(160), + [sym_pf_dot_cmd] = STATE(160), + [sym_pf_cmd] = STATE(160), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(160), + [sym_redirect_command] = STATE(422), [sym__dec_number] = STATE(2), [ts_builtin_sym_end] = ACTIONS(95), [anon_sym_DQUOTE] = ACTIONS(7), @@ -5721,187 +5797,187 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__help_command] = ACTIONS(55), }, [8] = { - [sym__commands_singleline] = STATE(464), - [sym__command] = STATE(423), - [sym_legacy_quoted_command] = STATE(255), - [sym__simple_command] = STATE(255), - [sym__tmp_command] = STATE(255), - [sym__iter_command] = STATE(255), - [sym__pipe_command] = STATE(255), - [sym_grep_command] = STATE(255), - [sym_html_disable_command] = STATE(255), - [sym_html_enable_command] = STATE(255), - [sym_pipe_command] = STATE(255), - [sym_iter_file_lines_command] = STATE(255), - [sym_iter_offsets_command] = STATE(255), - [sym_iter_offsetssizes_command] = STATE(255), - [sym_iter_hit_command] = STATE(255), - [sym_iter_interpret_command] = STATE(255), - [sym_iter_interpret_offsetssizes_command] = STATE(255), - [sym_iter_comment_command] = STATE(255), - [sym_iter_dbta_command] = STATE(255), - [sym_iter_dbtb_command] = STATE(255), - [sym_iter_dbts_command] = STATE(255), - [sym_iter_threads_command] = STATE(255), - [sym_iter_bbs_command] = STATE(255), - [sym_iter_instrs_command] = STATE(255), - [sym_iter_import_command] = STATE(255), - [sym_iter_sections_command] = STATE(255), - [sym_iter_segments_command] = STATE(255), - [sym_iter_symbol_command] = STATE(255), - [sym_iter_string_command] = STATE(255), - [sym_iter_flags_command] = STATE(255), - [sym_iter_function_command] = STATE(255), - [sym_iter_iomap_command] = STATE(255), - [sym_iter_dbgmap_command] = STATE(255), - [sym_iter_register_command] = STATE(255), - [sym_iter_step_command] = STATE(255), - [sym_tmp_seek_command] = STATE(255), - [sym_tmp_blksz_command] = STATE(255), - [sym_tmp_fromto_command] = STATE(255), - [sym_tmp_arch_command] = STATE(255), - [sym_tmp_bits_command] = STATE(255), - [sym_tmp_nthi_command] = STATE(255), - [sym_tmp_eval_command] = STATE(255), - [sym_tmp_fs_command] = STATE(255), - [sym_tmp_reli_command] = STATE(255), - [sym_tmp_kuery_command] = STATE(255), - [sym_tmp_fd_command] = STATE(255), - [sym_tmp_reg_command] = STATE(255), - [sym_tmp_file_command] = STATE(255), - [sym_tmp_string_command] = STATE(255), - [sym_tmp_value_command] = STATE(255), - [sym_tmp_hex_command] = STATE(255), - [sym_number_command] = STATE(255), - [sym_help_command] = STATE(255), - [sym_arged_command] = STATE(255), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(274), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(255), - [sym_Cf_cmd] = STATE(255), - [sym_pf_new_cmd] = STATE(255), - [sym_pf_dot_cmd] = STATE(255), - [sym_pf_cmd] = STATE(255), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(90), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(255), - [sym_redirect_command] = STATE(423), - [sym__dec_number] = STATE(5), - [aux_sym__commands_singleline_repeat1] = STATE(34), + [sym__commands_singleline] = STATE(487), + [sym__command] = STATE(441), + [sym_legacy_quoted_command] = STATE(266), + [sym__simple_command] = STATE(266), + [sym__tmp_command] = STATE(266), + [sym__iter_command] = STATE(266), + [sym__pipe_command] = STATE(266), + [sym_grep_command] = STATE(266), + [sym_html_disable_command] = STATE(266), + [sym_html_enable_command] = STATE(266), + [sym_pipe_command] = STATE(266), + [sym_iter_file_lines_command] = STATE(266), + [sym_iter_offsets_command] = STATE(266), + [sym_iter_offsetssizes_command] = STATE(266), + [sym_iter_hit_command] = STATE(266), + [sym_iter_interpret_command] = STATE(266), + [sym_iter_interpret_offsetssizes_command] = STATE(266), + [sym_iter_comment_command] = STATE(266), + [sym_iter_dbta_command] = STATE(266), + [sym_iter_dbtb_command] = STATE(266), + [sym_iter_dbts_command] = STATE(266), + [sym_iter_threads_command] = STATE(266), + [sym_iter_bbs_command] = STATE(266), + [sym_iter_instrs_command] = STATE(266), + [sym_iter_import_command] = STATE(266), + [sym_iter_sections_command] = STATE(266), + [sym_iter_segments_command] = STATE(266), + [sym_iter_symbol_command] = STATE(266), + [sym_iter_string_command] = STATE(266), + [sym_iter_flags_command] = STATE(266), + [sym_iter_function_command] = STATE(266), + [sym_iter_iomap_command] = STATE(266), + [sym_iter_dbgmap_command] = STATE(266), + [sym_iter_register_command] = STATE(266), + [sym_iter_step_command] = STATE(266), + [sym_tmp_seek_command] = STATE(266), + [sym_tmp_blksz_command] = STATE(266), + [sym_tmp_fromto_command] = STATE(266), + [sym_tmp_arch_command] = STATE(266), + [sym_tmp_bits_command] = STATE(266), + [sym_tmp_nthi_command] = STATE(266), + [sym_tmp_eval_command] = STATE(266), + [sym_tmp_fs_command] = STATE(266), + [sym_tmp_reli_command] = STATE(266), + [sym_tmp_kuery_command] = STATE(266), + [sym_tmp_fd_command] = STATE(266), + [sym_tmp_reg_command] = STATE(266), + [sym_tmp_file_command] = STATE(266), + [sym_tmp_string_command] = STATE(266), + [sym_tmp_value_command] = STATE(266), + [sym_tmp_hex_command] = STATE(266), + [sym_number_command] = STATE(266), + [sym_help_command] = STATE(266), + [sym_arged_command] = STATE(266), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(266), + [sym_Cf_cmd] = STATE(266), + [sym_pf_new_cmd] = STATE(266), + [sym_pf_dot_cmd] = STATE(266), + [sym_pf_cmd] = STATE(266), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(266), + [sym_redirect_command] = STATE(441), + [sym__dec_number] = STATE(2), + [aux_sym__commands_singleline_repeat1] = STATE(33), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_0] = ACTIONS(9), [aux_sym_number_command_token1] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(65), - [aux_sym__interpret_command_token1] = ACTIONS(67), - [aux_sym__interpret_command_token3] = ACTIONS(69), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym__interpret_command_token1] = ACTIONS(15), + [aux_sym__interpret_command_token3] = ACTIONS(17), [anon_sym_DOT_BANG] = ACTIONS(19), [anon_sym_DOT_LPAREN] = ACTIONS(21), [anon_sym_DOT_SLASH] = ACTIONS(23), - [anon_sym_pfo] = ACTIONS(71), - [anon_sym_Cf] = ACTIONS(73), - [sym_pf_dot_cmd_identifier] = ACTIONS(75), - [sym_pf_dot_full_cmd_identifier] = ACTIONS(77), - [aux_sym_pf_cmd_token1] = ACTIONS(79), + [anon_sym_pfo] = ACTIONS(25), + [anon_sym_Cf] = ACTIONS(27), + [sym_pf_dot_cmd_identifier] = ACTIONS(29), + [sym_pf_dot_full_cmd_identifier] = ACTIONS(31), + [aux_sym_pf_cmd_token1] = ACTIONS(33), [anon_sym_PERCENT] = ACTIONS(35), [anon_sym_env] = ACTIONS(35), [anon_sym_DOT_DOT_DOT] = ACTIONS(37), - [sym_system_identifier] = ACTIONS(81), - [sym_question_mark_identifier] = ACTIONS(83), + [sym_system_identifier] = ACTIONS(39), + [sym_question_mark_identifier] = ACTIONS(41), [sym_pointer_identifier] = ACTIONS(43), - [sym_macro_identifier] = ACTIONS(85), + [sym_macro_identifier] = ACTIONS(45), [anon_sym_SEMI] = ACTIONS(97), [aux_sym__dec_number_token1] = ACTIONS(49), [aux_sym__dec_number_token2] = ACTIONS(51), [sym__comment] = ACTIONS(3), - [sym_cmd_identifier] = ACTIONS(87), - [sym__help_command] = ACTIONS(89), + [sym_cmd_identifier] = ACTIONS(53), + [sym__help_command] = ACTIONS(55), }, [9] = { - [sym__commands_singleline] = STATE(462), - [sym__command] = STATE(423), - [sym_legacy_quoted_command] = STATE(255), - [sym__simple_command] = STATE(255), - [sym__tmp_command] = STATE(255), - [sym__iter_command] = STATE(255), - [sym__pipe_command] = STATE(255), - [sym_grep_command] = STATE(255), - [sym_html_disable_command] = STATE(255), - [sym_html_enable_command] = STATE(255), - [sym_pipe_command] = STATE(255), - [sym_iter_file_lines_command] = STATE(255), - [sym_iter_offsets_command] = STATE(255), - [sym_iter_offsetssizes_command] = STATE(255), - [sym_iter_hit_command] = STATE(255), - [sym_iter_interpret_command] = STATE(255), - [sym_iter_interpret_offsetssizes_command] = STATE(255), - [sym_iter_comment_command] = STATE(255), - [sym_iter_dbta_command] = STATE(255), - [sym_iter_dbtb_command] = STATE(255), - [sym_iter_dbts_command] = STATE(255), - [sym_iter_threads_command] = STATE(255), - [sym_iter_bbs_command] = STATE(255), - [sym_iter_instrs_command] = STATE(255), - [sym_iter_import_command] = STATE(255), - [sym_iter_sections_command] = STATE(255), - [sym_iter_segments_command] = STATE(255), - [sym_iter_symbol_command] = STATE(255), - [sym_iter_string_command] = STATE(255), - [sym_iter_flags_command] = STATE(255), - [sym_iter_function_command] = STATE(255), - [sym_iter_iomap_command] = STATE(255), - [sym_iter_dbgmap_command] = STATE(255), - [sym_iter_register_command] = STATE(255), - [sym_iter_step_command] = STATE(255), - [sym_tmp_seek_command] = STATE(255), - [sym_tmp_blksz_command] = STATE(255), - [sym_tmp_fromto_command] = STATE(255), - [sym_tmp_arch_command] = STATE(255), - [sym_tmp_bits_command] = STATE(255), - [sym_tmp_nthi_command] = STATE(255), - [sym_tmp_eval_command] = STATE(255), - [sym_tmp_fs_command] = STATE(255), - [sym_tmp_reli_command] = STATE(255), - [sym_tmp_kuery_command] = STATE(255), - [sym_tmp_fd_command] = STATE(255), - [sym_tmp_reg_command] = STATE(255), - [sym_tmp_file_command] = STATE(255), - [sym_tmp_string_command] = STATE(255), - [sym_tmp_value_command] = STATE(255), - [sym_tmp_hex_command] = STATE(255), - [sym_number_command] = STATE(255), - [sym_help_command] = STATE(255), - [sym_arged_command] = STATE(255), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(274), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(255), - [sym_Cf_cmd] = STATE(255), - [sym_pf_new_cmd] = STATE(255), - [sym_pf_dot_cmd] = STATE(255), - [sym_pf_cmd] = STATE(255), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(90), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(255), - [sym_redirect_command] = STATE(423), + [sym__commands_singleline] = STATE(465), + [sym__command] = STATE(426), + [sym_legacy_quoted_command] = STATE(265), + [sym__simple_command] = STATE(265), + [sym__tmp_command] = STATE(265), + [sym__iter_command] = STATE(265), + [sym__pipe_command] = STATE(265), + [sym_grep_command] = STATE(265), + [sym_html_disable_command] = STATE(265), + [sym_html_enable_command] = STATE(265), + [sym_pipe_command] = STATE(265), + [sym_iter_file_lines_command] = STATE(265), + [sym_iter_offsets_command] = STATE(265), + [sym_iter_offsetssizes_command] = STATE(265), + [sym_iter_hit_command] = STATE(265), + [sym_iter_interpret_command] = STATE(265), + [sym_iter_interpret_offsetssizes_command] = STATE(265), + [sym_iter_comment_command] = STATE(265), + [sym_iter_dbta_command] = STATE(265), + [sym_iter_dbtb_command] = STATE(265), + [sym_iter_dbts_command] = STATE(265), + [sym_iter_threads_command] = STATE(265), + [sym_iter_bbs_command] = STATE(265), + [sym_iter_instrs_command] = STATE(265), + [sym_iter_import_command] = STATE(265), + [sym_iter_sections_command] = STATE(265), + [sym_iter_segments_command] = STATE(265), + [sym_iter_symbol_command] = STATE(265), + [sym_iter_string_command] = STATE(265), + [sym_iter_flags_command] = STATE(265), + [sym_iter_function_command] = STATE(265), + [sym_iter_iomap_command] = STATE(265), + [sym_iter_dbgmap_command] = STATE(265), + [sym_iter_register_command] = STATE(265), + [sym_iter_step_command] = STATE(265), + [sym_tmp_seek_command] = STATE(265), + [sym_tmp_blksz_command] = STATE(265), + [sym_tmp_fromto_command] = STATE(265), + [sym_tmp_arch_command] = STATE(265), + [sym_tmp_bits_command] = STATE(265), + [sym_tmp_nthi_command] = STATE(265), + [sym_tmp_eval_command] = STATE(265), + [sym_tmp_fs_command] = STATE(265), + [sym_tmp_reli_command] = STATE(265), + [sym_tmp_kuery_command] = STATE(265), + [sym_tmp_fd_command] = STATE(265), + [sym_tmp_reg_command] = STATE(265), + [sym_tmp_file_command] = STATE(265), + [sym_tmp_string_command] = STATE(265), + [sym_tmp_value_command] = STATE(265), + [sym_tmp_hex_command] = STATE(265), + [sym_number_command] = STATE(265), + [sym_help_command] = STATE(265), + [sym_arged_command] = STATE(265), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(281), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(265), + [sym_Cf_cmd] = STATE(265), + [sym_pf_new_cmd] = STATE(265), + [sym_pf_dot_cmd] = STATE(265), + [sym_pf_cmd] = STATE(265), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(91), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(265), + [sym_redirect_command] = STATE(426), [sym__dec_number] = STATE(5), - [aux_sym__commands_singleline_repeat1] = STATE(34), + [aux_sym__commands_singleline_repeat1] = STATE(35), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_0] = ACTIONS(9), [aux_sym_number_command_token1] = ACTIONS(11), @@ -5923,7 +5999,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_question_mark_identifier] = ACTIONS(83), [sym_pointer_identifier] = ACTIONS(43), [sym_macro_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), [aux_sym__dec_number_token1] = ACTIONS(49), [aux_sym__dec_number_token2] = ACTIONS(51), [sym__comment] = ACTIONS(3), @@ -5931,185 +6007,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__help_command] = ACTIONS(89), }, [10] = { - [sym__commands_singleline] = STATE(458), - [sym__command] = STATE(423), - [sym_legacy_quoted_command] = STATE(255), - [sym__simple_command] = STATE(255), - [sym__tmp_command] = STATE(255), - [sym__iter_command] = STATE(255), - [sym__pipe_command] = STATE(255), - [sym_grep_command] = STATE(255), - [sym_html_disable_command] = STATE(255), - [sym_html_enable_command] = STATE(255), - [sym_pipe_command] = STATE(255), - [sym_iter_file_lines_command] = STATE(255), - [sym_iter_offsets_command] = STATE(255), - [sym_iter_offsetssizes_command] = STATE(255), - [sym_iter_hit_command] = STATE(255), - [sym_iter_interpret_command] = STATE(255), - [sym_iter_interpret_offsetssizes_command] = STATE(255), - [sym_iter_comment_command] = STATE(255), - [sym_iter_dbta_command] = STATE(255), - [sym_iter_dbtb_command] = STATE(255), - [sym_iter_dbts_command] = STATE(255), - [sym_iter_threads_command] = STATE(255), - [sym_iter_bbs_command] = STATE(255), - [sym_iter_instrs_command] = STATE(255), - [sym_iter_import_command] = STATE(255), - [sym_iter_sections_command] = STATE(255), - [sym_iter_segments_command] = STATE(255), - [sym_iter_symbol_command] = STATE(255), - [sym_iter_string_command] = STATE(255), - [sym_iter_flags_command] = STATE(255), - [sym_iter_function_command] = STATE(255), - [sym_iter_iomap_command] = STATE(255), - [sym_iter_dbgmap_command] = STATE(255), - [sym_iter_register_command] = STATE(255), - [sym_iter_step_command] = STATE(255), - [sym_tmp_seek_command] = STATE(255), - [sym_tmp_blksz_command] = STATE(255), - [sym_tmp_fromto_command] = STATE(255), - [sym_tmp_arch_command] = STATE(255), - [sym_tmp_bits_command] = STATE(255), - [sym_tmp_nthi_command] = STATE(255), - [sym_tmp_eval_command] = STATE(255), - [sym_tmp_fs_command] = STATE(255), - [sym_tmp_reli_command] = STATE(255), - [sym_tmp_kuery_command] = STATE(255), - [sym_tmp_fd_command] = STATE(255), - [sym_tmp_reg_command] = STATE(255), - [sym_tmp_file_command] = STATE(255), - [sym_tmp_string_command] = STATE(255), - [sym_tmp_value_command] = STATE(255), - [sym_tmp_hex_command] = STATE(255), - [sym_number_command] = STATE(255), - [sym_help_command] = STATE(255), - [sym_arged_command] = STATE(255), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(274), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(255), - [sym_Cf_cmd] = STATE(255), - [sym_pf_new_cmd] = STATE(255), - [sym_pf_dot_cmd] = STATE(255), - [sym_pf_cmd] = STATE(255), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(90), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(255), - [sym_redirect_command] = STATE(423), - [sym__dec_number] = STATE(5), - [aux_sym__commands_singleline_repeat1] = STATE(34), - [anon_sym_DQUOTE] = ACTIONS(7), - [anon_sym_0] = ACTIONS(9), - [aux_sym_number_command_token1] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(65), - [aux_sym__interpret_command_token1] = ACTIONS(67), - [aux_sym__interpret_command_token3] = ACTIONS(69), - [anon_sym_DOT_BANG] = ACTIONS(19), - [anon_sym_DOT_LPAREN] = ACTIONS(21), - [anon_sym_DOT_SLASH] = ACTIONS(23), - [anon_sym_pfo] = ACTIONS(71), - [anon_sym_Cf] = ACTIONS(73), - [sym_pf_dot_cmd_identifier] = ACTIONS(75), - [sym_pf_dot_full_cmd_identifier] = ACTIONS(77), - [aux_sym_pf_cmd_token1] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(35), - [anon_sym_env] = ACTIONS(35), - [anon_sym_DOT_DOT_DOT] = ACTIONS(37), - [sym_system_identifier] = ACTIONS(81), - [sym_question_mark_identifier] = ACTIONS(83), - [sym_pointer_identifier] = ACTIONS(43), - [sym_macro_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(97), - [aux_sym__dec_number_token1] = ACTIONS(49), - [aux_sym__dec_number_token2] = ACTIONS(51), - [sym__comment] = ACTIONS(3), - [sym_cmd_identifier] = ACTIONS(87), - [sym__help_command] = ACTIONS(89), - }, - [11] = { - [sym__commands_singleline] = STATE(457), - [sym__command] = STATE(424), - [sym_legacy_quoted_command] = STATE(256), - [sym__simple_command] = STATE(256), - [sym__tmp_command] = STATE(256), - [sym__iter_command] = STATE(256), - [sym__pipe_command] = STATE(256), - [sym_grep_command] = STATE(256), - [sym_html_disable_command] = STATE(256), - [sym_html_enable_command] = STATE(256), - [sym_pipe_command] = STATE(256), - [sym_iter_file_lines_command] = STATE(256), - [sym_iter_offsets_command] = STATE(256), - [sym_iter_offsetssizes_command] = STATE(256), - [sym_iter_hit_command] = STATE(256), - [sym_iter_interpret_command] = STATE(256), - [sym_iter_interpret_offsetssizes_command] = STATE(256), - [sym_iter_comment_command] = STATE(256), - [sym_iter_dbta_command] = STATE(256), - [sym_iter_dbtb_command] = STATE(256), - [sym_iter_dbts_command] = STATE(256), - [sym_iter_threads_command] = STATE(256), - [sym_iter_bbs_command] = STATE(256), - [sym_iter_instrs_command] = STATE(256), - [sym_iter_import_command] = STATE(256), - [sym_iter_sections_command] = STATE(256), - [sym_iter_segments_command] = STATE(256), - [sym_iter_symbol_command] = STATE(256), - [sym_iter_string_command] = STATE(256), - [sym_iter_flags_command] = STATE(256), - [sym_iter_function_command] = STATE(256), - [sym_iter_iomap_command] = STATE(256), - [sym_iter_dbgmap_command] = STATE(256), - [sym_iter_register_command] = STATE(256), - [sym_iter_step_command] = STATE(256), - [sym_tmp_seek_command] = STATE(256), - [sym_tmp_blksz_command] = STATE(256), - [sym_tmp_fromto_command] = STATE(256), - [sym_tmp_arch_command] = STATE(256), - [sym_tmp_bits_command] = STATE(256), - [sym_tmp_nthi_command] = STATE(256), - [sym_tmp_eval_command] = STATE(256), - [sym_tmp_fs_command] = STATE(256), - [sym_tmp_reli_command] = STATE(256), - [sym_tmp_kuery_command] = STATE(256), - [sym_tmp_fd_command] = STATE(256), - [sym_tmp_reg_command] = STATE(256), - [sym_tmp_file_command] = STATE(256), - [sym_tmp_string_command] = STATE(256), - [sym_tmp_value_command] = STATE(256), - [sym_tmp_hex_command] = STATE(256), - [sym_number_command] = STATE(256), - [sym_help_command] = STATE(256), - [sym_arged_command] = STATE(256), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(256), - [sym_Cf_cmd] = STATE(256), - [sym_pf_new_cmd] = STATE(256), - [sym_pf_dot_cmd] = STATE(256), - [sym_pf_cmd] = STATE(256), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(256), - [sym_redirect_command] = STATE(424), + [sym__commands_singleline] = STATE(479), + [sym__command] = STATE(441), + [sym_legacy_quoted_command] = STATE(266), + [sym__simple_command] = STATE(266), + [sym__tmp_command] = STATE(266), + [sym__iter_command] = STATE(266), + [sym__pipe_command] = STATE(266), + [sym_grep_command] = STATE(266), + [sym_html_disable_command] = STATE(266), + [sym_html_enable_command] = STATE(266), + [sym_pipe_command] = STATE(266), + [sym_iter_file_lines_command] = STATE(266), + [sym_iter_offsets_command] = STATE(266), + [sym_iter_offsetssizes_command] = STATE(266), + [sym_iter_hit_command] = STATE(266), + [sym_iter_interpret_command] = STATE(266), + [sym_iter_interpret_offsetssizes_command] = STATE(266), + [sym_iter_comment_command] = STATE(266), + [sym_iter_dbta_command] = STATE(266), + [sym_iter_dbtb_command] = STATE(266), + [sym_iter_dbts_command] = STATE(266), + [sym_iter_threads_command] = STATE(266), + [sym_iter_bbs_command] = STATE(266), + [sym_iter_instrs_command] = STATE(266), + [sym_iter_import_command] = STATE(266), + [sym_iter_sections_command] = STATE(266), + [sym_iter_segments_command] = STATE(266), + [sym_iter_symbol_command] = STATE(266), + [sym_iter_string_command] = STATE(266), + [sym_iter_flags_command] = STATE(266), + [sym_iter_function_command] = STATE(266), + [sym_iter_iomap_command] = STATE(266), + [sym_iter_dbgmap_command] = STATE(266), + [sym_iter_register_command] = STATE(266), + [sym_iter_step_command] = STATE(266), + [sym_tmp_seek_command] = STATE(266), + [sym_tmp_blksz_command] = STATE(266), + [sym_tmp_fromto_command] = STATE(266), + [sym_tmp_arch_command] = STATE(266), + [sym_tmp_bits_command] = STATE(266), + [sym_tmp_nthi_command] = STATE(266), + [sym_tmp_eval_command] = STATE(266), + [sym_tmp_fs_command] = STATE(266), + [sym_tmp_reli_command] = STATE(266), + [sym_tmp_kuery_command] = STATE(266), + [sym_tmp_fd_command] = STATE(266), + [sym_tmp_reg_command] = STATE(266), + [sym_tmp_file_command] = STATE(266), + [sym_tmp_string_command] = STATE(266), + [sym_tmp_value_command] = STATE(266), + [sym_tmp_hex_command] = STATE(266), + [sym_number_command] = STATE(266), + [sym_help_command] = STATE(266), + [sym_arged_command] = STATE(266), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(266), + [sym_Cf_cmd] = STATE(266), + [sym_pf_new_cmd] = STATE(266), + [sym_pf_dot_cmd] = STATE(266), + [sym_pf_cmd] = STATE(266), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(266), + [sym_redirect_command] = STATE(441), [sym__dec_number] = STATE(2), [aux_sym__commands_singleline_repeat1] = STATE(33), [anon_sym_DQUOTE] = ACTIONS(7), @@ -6133,7 +6104,112 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_question_mark_identifier] = ACTIONS(41), [sym_pointer_identifier] = ACTIONS(43), [sym_macro_identifier] = ACTIONS(45), - [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(97), + [aux_sym__dec_number_token1] = ACTIONS(49), + [aux_sym__dec_number_token2] = ACTIONS(51), + [sym__comment] = ACTIONS(3), + [sym_cmd_identifier] = ACTIONS(53), + [sym__help_command] = ACTIONS(55), + }, + [11] = { + [sym__commands_singleline] = STATE(470), + [sym__command] = STATE(441), + [sym_legacy_quoted_command] = STATE(266), + [sym__simple_command] = STATE(266), + [sym__tmp_command] = STATE(266), + [sym__iter_command] = STATE(266), + [sym__pipe_command] = STATE(266), + [sym_grep_command] = STATE(266), + [sym_html_disable_command] = STATE(266), + [sym_html_enable_command] = STATE(266), + [sym_pipe_command] = STATE(266), + [sym_iter_file_lines_command] = STATE(266), + [sym_iter_offsets_command] = STATE(266), + [sym_iter_offsetssizes_command] = STATE(266), + [sym_iter_hit_command] = STATE(266), + [sym_iter_interpret_command] = STATE(266), + [sym_iter_interpret_offsetssizes_command] = STATE(266), + [sym_iter_comment_command] = STATE(266), + [sym_iter_dbta_command] = STATE(266), + [sym_iter_dbtb_command] = STATE(266), + [sym_iter_dbts_command] = STATE(266), + [sym_iter_threads_command] = STATE(266), + [sym_iter_bbs_command] = STATE(266), + [sym_iter_instrs_command] = STATE(266), + [sym_iter_import_command] = STATE(266), + [sym_iter_sections_command] = STATE(266), + [sym_iter_segments_command] = STATE(266), + [sym_iter_symbol_command] = STATE(266), + [sym_iter_string_command] = STATE(266), + [sym_iter_flags_command] = STATE(266), + [sym_iter_function_command] = STATE(266), + [sym_iter_iomap_command] = STATE(266), + [sym_iter_dbgmap_command] = STATE(266), + [sym_iter_register_command] = STATE(266), + [sym_iter_step_command] = STATE(266), + [sym_tmp_seek_command] = STATE(266), + [sym_tmp_blksz_command] = STATE(266), + [sym_tmp_fromto_command] = STATE(266), + [sym_tmp_arch_command] = STATE(266), + [sym_tmp_bits_command] = STATE(266), + [sym_tmp_nthi_command] = STATE(266), + [sym_tmp_eval_command] = STATE(266), + [sym_tmp_fs_command] = STATE(266), + [sym_tmp_reli_command] = STATE(266), + [sym_tmp_kuery_command] = STATE(266), + [sym_tmp_fd_command] = STATE(266), + [sym_tmp_reg_command] = STATE(266), + [sym_tmp_file_command] = STATE(266), + [sym_tmp_string_command] = STATE(266), + [sym_tmp_value_command] = STATE(266), + [sym_tmp_hex_command] = STATE(266), + [sym_number_command] = STATE(266), + [sym_help_command] = STATE(266), + [sym_arged_command] = STATE(266), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(266), + [sym_Cf_cmd] = STATE(266), + [sym_pf_new_cmd] = STATE(266), + [sym_pf_dot_cmd] = STATE(266), + [sym_pf_cmd] = STATE(266), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(266), + [sym_redirect_command] = STATE(441), + [sym__dec_number] = STATE(2), + [aux_sym__commands_singleline_repeat1] = STATE(33), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_0] = ACTIONS(9), + [aux_sym_number_command_token1] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym__interpret_command_token1] = ACTIONS(15), + [aux_sym__interpret_command_token3] = ACTIONS(17), + [anon_sym_DOT_BANG] = ACTIONS(19), + [anon_sym_DOT_LPAREN] = ACTIONS(21), + [anon_sym_DOT_SLASH] = ACTIONS(23), + [anon_sym_pfo] = ACTIONS(25), + [anon_sym_Cf] = ACTIONS(27), + [sym_pf_dot_cmd_identifier] = ACTIONS(29), + [sym_pf_dot_full_cmd_identifier] = ACTIONS(31), + [aux_sym_pf_cmd_token1] = ACTIONS(33), + [anon_sym_PERCENT] = ACTIONS(35), + [anon_sym_env] = ACTIONS(35), + [anon_sym_DOT_DOT_DOT] = ACTIONS(37), + [sym_system_identifier] = ACTIONS(39), + [sym_question_mark_identifier] = ACTIONS(41), + [sym_pointer_identifier] = ACTIONS(43), + [sym_macro_identifier] = ACTIONS(45), + [anon_sym_SEMI] = ACTIONS(97), [aux_sym__dec_number_token1] = ACTIONS(49), [aux_sym__dec_number_token2] = ACTIONS(51), [sym__comment] = ACTIONS(3), @@ -6141,82 +6217,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__help_command] = ACTIONS(55), }, [12] = { - [sym__commands_singleline] = STATE(456), - [sym__command] = STATE(423), - [sym_legacy_quoted_command] = STATE(255), - [sym__simple_command] = STATE(255), - [sym__tmp_command] = STATE(255), - [sym__iter_command] = STATE(255), - [sym__pipe_command] = STATE(255), - [sym_grep_command] = STATE(255), - [sym_html_disable_command] = STATE(255), - [sym_html_enable_command] = STATE(255), - [sym_pipe_command] = STATE(255), - [sym_iter_file_lines_command] = STATE(255), - [sym_iter_offsets_command] = STATE(255), - [sym_iter_offsetssizes_command] = STATE(255), - [sym_iter_hit_command] = STATE(255), - [sym_iter_interpret_command] = STATE(255), - [sym_iter_interpret_offsetssizes_command] = STATE(255), - [sym_iter_comment_command] = STATE(255), - [sym_iter_dbta_command] = STATE(255), - [sym_iter_dbtb_command] = STATE(255), - [sym_iter_dbts_command] = STATE(255), - [sym_iter_threads_command] = STATE(255), - [sym_iter_bbs_command] = STATE(255), - [sym_iter_instrs_command] = STATE(255), - [sym_iter_import_command] = STATE(255), - [sym_iter_sections_command] = STATE(255), - [sym_iter_segments_command] = STATE(255), - [sym_iter_symbol_command] = STATE(255), - [sym_iter_string_command] = STATE(255), - [sym_iter_flags_command] = STATE(255), - [sym_iter_function_command] = STATE(255), - [sym_iter_iomap_command] = STATE(255), - [sym_iter_dbgmap_command] = STATE(255), - [sym_iter_register_command] = STATE(255), - [sym_iter_step_command] = STATE(255), - [sym_tmp_seek_command] = STATE(255), - [sym_tmp_blksz_command] = STATE(255), - [sym_tmp_fromto_command] = STATE(255), - [sym_tmp_arch_command] = STATE(255), - [sym_tmp_bits_command] = STATE(255), - [sym_tmp_nthi_command] = STATE(255), - [sym_tmp_eval_command] = STATE(255), - [sym_tmp_fs_command] = STATE(255), - [sym_tmp_reli_command] = STATE(255), - [sym_tmp_kuery_command] = STATE(255), - [sym_tmp_fd_command] = STATE(255), - [sym_tmp_reg_command] = STATE(255), - [sym_tmp_file_command] = STATE(255), - [sym_tmp_string_command] = STATE(255), - [sym_tmp_value_command] = STATE(255), - [sym_tmp_hex_command] = STATE(255), - [sym_number_command] = STATE(255), - [sym_help_command] = STATE(255), - [sym_arged_command] = STATE(255), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(274), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(255), - [sym_Cf_cmd] = STATE(255), - [sym_pf_new_cmd] = STATE(255), - [sym_pf_dot_cmd] = STATE(255), - [sym_pf_cmd] = STATE(255), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(90), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(255), - [sym_redirect_command] = STATE(423), + [sym__commands_singleline] = STATE(476), + [sym__command] = STATE(426), + [sym_legacy_quoted_command] = STATE(265), + [sym__simple_command] = STATE(265), + [sym__tmp_command] = STATE(265), + [sym__iter_command] = STATE(265), + [sym__pipe_command] = STATE(265), + [sym_grep_command] = STATE(265), + [sym_html_disable_command] = STATE(265), + [sym_html_enable_command] = STATE(265), + [sym_pipe_command] = STATE(265), + [sym_iter_file_lines_command] = STATE(265), + [sym_iter_offsets_command] = STATE(265), + [sym_iter_offsetssizes_command] = STATE(265), + [sym_iter_hit_command] = STATE(265), + [sym_iter_interpret_command] = STATE(265), + [sym_iter_interpret_offsetssizes_command] = STATE(265), + [sym_iter_comment_command] = STATE(265), + [sym_iter_dbta_command] = STATE(265), + [sym_iter_dbtb_command] = STATE(265), + [sym_iter_dbts_command] = STATE(265), + [sym_iter_threads_command] = STATE(265), + [sym_iter_bbs_command] = STATE(265), + [sym_iter_instrs_command] = STATE(265), + [sym_iter_import_command] = STATE(265), + [sym_iter_sections_command] = STATE(265), + [sym_iter_segments_command] = STATE(265), + [sym_iter_symbol_command] = STATE(265), + [sym_iter_string_command] = STATE(265), + [sym_iter_flags_command] = STATE(265), + [sym_iter_function_command] = STATE(265), + [sym_iter_iomap_command] = STATE(265), + [sym_iter_dbgmap_command] = STATE(265), + [sym_iter_register_command] = STATE(265), + [sym_iter_step_command] = STATE(265), + [sym_tmp_seek_command] = STATE(265), + [sym_tmp_blksz_command] = STATE(265), + [sym_tmp_fromto_command] = STATE(265), + [sym_tmp_arch_command] = STATE(265), + [sym_tmp_bits_command] = STATE(265), + [sym_tmp_nthi_command] = STATE(265), + [sym_tmp_eval_command] = STATE(265), + [sym_tmp_fs_command] = STATE(265), + [sym_tmp_reli_command] = STATE(265), + [sym_tmp_kuery_command] = STATE(265), + [sym_tmp_fd_command] = STATE(265), + [sym_tmp_reg_command] = STATE(265), + [sym_tmp_file_command] = STATE(265), + [sym_tmp_string_command] = STATE(265), + [sym_tmp_value_command] = STATE(265), + [sym_tmp_hex_command] = STATE(265), + [sym_number_command] = STATE(265), + [sym_help_command] = STATE(265), + [sym_arged_command] = STATE(265), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(281), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(265), + [sym_Cf_cmd] = STATE(265), + [sym_pf_new_cmd] = STATE(265), + [sym_pf_dot_cmd] = STATE(265), + [sym_pf_cmd] = STATE(265), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(91), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(265), + [sym_redirect_command] = STATE(426), [sym__dec_number] = STATE(5), - [aux_sym__commands_singleline_repeat1] = STATE(34), + [aux_sym__commands_singleline_repeat1] = STATE(35), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_0] = ACTIONS(9), [aux_sym_number_command_token1] = ACTIONS(11), @@ -6238,7 +6314,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_question_mark_identifier] = ACTIONS(83), [sym_pointer_identifier] = ACTIONS(43), [sym_macro_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), [aux_sym__dec_number_token1] = ACTIONS(49), [aux_sym__dec_number_token2] = ACTIONS(51), [sym__comment] = ACTIONS(3), @@ -6246,185 +6322,185 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__help_command] = ACTIONS(89), }, [13] = { - [sym__commands_singleline] = STATE(493), - [sym__command] = STATE(424), - [sym_legacy_quoted_command] = STATE(256), - [sym__simple_command] = STATE(256), - [sym__tmp_command] = STATE(256), - [sym__iter_command] = STATE(256), - [sym__pipe_command] = STATE(256), - [sym_grep_command] = STATE(256), - [sym_html_disable_command] = STATE(256), - [sym_html_enable_command] = STATE(256), - [sym_pipe_command] = STATE(256), - [sym_iter_file_lines_command] = STATE(256), - [sym_iter_offsets_command] = STATE(256), - [sym_iter_offsetssizes_command] = STATE(256), - [sym_iter_hit_command] = STATE(256), - [sym_iter_interpret_command] = STATE(256), - [sym_iter_interpret_offsetssizes_command] = STATE(256), - [sym_iter_comment_command] = STATE(256), - [sym_iter_dbta_command] = STATE(256), - [sym_iter_dbtb_command] = STATE(256), - [sym_iter_dbts_command] = STATE(256), - [sym_iter_threads_command] = STATE(256), - [sym_iter_bbs_command] = STATE(256), - [sym_iter_instrs_command] = STATE(256), - [sym_iter_import_command] = STATE(256), - [sym_iter_sections_command] = STATE(256), - [sym_iter_segments_command] = STATE(256), - [sym_iter_symbol_command] = STATE(256), - [sym_iter_string_command] = STATE(256), - [sym_iter_flags_command] = STATE(256), - [sym_iter_function_command] = STATE(256), - [sym_iter_iomap_command] = STATE(256), - [sym_iter_dbgmap_command] = STATE(256), - [sym_iter_register_command] = STATE(256), - [sym_iter_step_command] = STATE(256), - [sym_tmp_seek_command] = STATE(256), - [sym_tmp_blksz_command] = STATE(256), - [sym_tmp_fromto_command] = STATE(256), - [sym_tmp_arch_command] = STATE(256), - [sym_tmp_bits_command] = STATE(256), - [sym_tmp_nthi_command] = STATE(256), - [sym_tmp_eval_command] = STATE(256), - [sym_tmp_fs_command] = STATE(256), - [sym_tmp_reli_command] = STATE(256), - [sym_tmp_kuery_command] = STATE(256), - [sym_tmp_fd_command] = STATE(256), - [sym_tmp_reg_command] = STATE(256), - [sym_tmp_file_command] = STATE(256), - [sym_tmp_string_command] = STATE(256), - [sym_tmp_value_command] = STATE(256), - [sym_tmp_hex_command] = STATE(256), - [sym_number_command] = STATE(256), - [sym_help_command] = STATE(256), - [sym_arged_command] = STATE(256), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), + [sym__commands_singleline] = STATE(469), + [sym__command] = STATE(426), + [sym_legacy_quoted_command] = STATE(265), + [sym__simple_command] = STATE(265), + [sym__tmp_command] = STATE(265), + [sym__iter_command] = STATE(265), + [sym__pipe_command] = STATE(265), + [sym_grep_command] = STATE(265), + [sym_html_disable_command] = STATE(265), + [sym_html_enable_command] = STATE(265), + [sym_pipe_command] = STATE(265), + [sym_iter_file_lines_command] = STATE(265), + [sym_iter_offsets_command] = STATE(265), + [sym_iter_offsetssizes_command] = STATE(265), + [sym_iter_hit_command] = STATE(265), + [sym_iter_interpret_command] = STATE(265), + [sym_iter_interpret_offsetssizes_command] = STATE(265), + [sym_iter_comment_command] = STATE(265), + [sym_iter_dbta_command] = STATE(265), + [sym_iter_dbtb_command] = STATE(265), + [sym_iter_dbts_command] = STATE(265), + [sym_iter_threads_command] = STATE(265), + [sym_iter_bbs_command] = STATE(265), + [sym_iter_instrs_command] = STATE(265), + [sym_iter_import_command] = STATE(265), + [sym_iter_sections_command] = STATE(265), + [sym_iter_segments_command] = STATE(265), + [sym_iter_symbol_command] = STATE(265), + [sym_iter_string_command] = STATE(265), + [sym_iter_flags_command] = STATE(265), + [sym_iter_function_command] = STATE(265), + [sym_iter_iomap_command] = STATE(265), + [sym_iter_dbgmap_command] = STATE(265), + [sym_iter_register_command] = STATE(265), + [sym_iter_step_command] = STATE(265), + [sym_tmp_seek_command] = STATE(265), + [sym_tmp_blksz_command] = STATE(265), + [sym_tmp_fromto_command] = STATE(265), + [sym_tmp_arch_command] = STATE(265), + [sym_tmp_bits_command] = STATE(265), + [sym_tmp_nthi_command] = STATE(265), + [sym_tmp_eval_command] = STATE(265), + [sym_tmp_fs_command] = STATE(265), + [sym_tmp_reli_command] = STATE(265), + [sym_tmp_kuery_command] = STATE(265), + [sym_tmp_fd_command] = STATE(265), + [sym_tmp_reg_command] = STATE(265), + [sym_tmp_file_command] = STATE(265), + [sym_tmp_string_command] = STATE(265), + [sym_tmp_value_command] = STATE(265), + [sym_tmp_hex_command] = STATE(265), + [sym_number_command] = STATE(265), + [sym_help_command] = STATE(265), + [sym_arged_command] = STATE(265), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(256), - [sym_Cf_cmd] = STATE(256), - [sym_pf_new_cmd] = STATE(256), - [sym_pf_dot_cmd] = STATE(256), - [sym_pf_cmd] = STATE(256), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(256), - [sym_redirect_command] = STATE(424), - [sym__dec_number] = STATE(2), - [aux_sym__commands_singleline_repeat1] = STATE(33), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(265), + [sym_Cf_cmd] = STATE(265), + [sym_pf_new_cmd] = STATE(265), + [sym_pf_dot_cmd] = STATE(265), + [sym_pf_cmd] = STATE(265), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(91), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(265), + [sym_redirect_command] = STATE(426), + [sym__dec_number] = STATE(5), + [aux_sym__commands_singleline_repeat1] = STATE(35), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_0] = ACTIONS(9), [aux_sym_number_command_token1] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym__interpret_command_token1] = ACTIONS(15), - [aux_sym__interpret_command_token3] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(65), + [aux_sym__interpret_command_token1] = ACTIONS(67), + [aux_sym__interpret_command_token3] = ACTIONS(69), [anon_sym_DOT_BANG] = ACTIONS(19), [anon_sym_DOT_LPAREN] = ACTIONS(21), [anon_sym_DOT_SLASH] = ACTIONS(23), - [anon_sym_pfo] = ACTIONS(25), - [anon_sym_Cf] = ACTIONS(27), - [sym_pf_dot_cmd_identifier] = ACTIONS(29), - [sym_pf_dot_full_cmd_identifier] = ACTIONS(31), - [aux_sym_pf_cmd_token1] = ACTIONS(33), + [anon_sym_pfo] = ACTIONS(71), + [anon_sym_Cf] = ACTIONS(73), + [sym_pf_dot_cmd_identifier] = ACTIONS(75), + [sym_pf_dot_full_cmd_identifier] = ACTIONS(77), + [aux_sym_pf_cmd_token1] = ACTIONS(79), [anon_sym_PERCENT] = ACTIONS(35), [anon_sym_env] = ACTIONS(35), [anon_sym_DOT_DOT_DOT] = ACTIONS(37), - [sym_system_identifier] = ACTIONS(39), - [sym_question_mark_identifier] = ACTIONS(41), + [sym_system_identifier] = ACTIONS(81), + [sym_question_mark_identifier] = ACTIONS(83), [sym_pointer_identifier] = ACTIONS(43), - [sym_macro_identifier] = ACTIONS(45), + [sym_macro_identifier] = ACTIONS(85), [anon_sym_SEMI] = ACTIONS(99), [aux_sym__dec_number_token1] = ACTIONS(49), [aux_sym__dec_number_token2] = ACTIONS(51), [sym__comment] = ACTIONS(3), - [sym_cmd_identifier] = ACTIONS(53), - [sym__help_command] = ACTIONS(55), + [sym_cmd_identifier] = ACTIONS(87), + [sym__help_command] = ACTIONS(89), }, [14] = { - [sym__commands_singleline] = STATE(455), - [sym__command] = STATE(424), - [sym_legacy_quoted_command] = STATE(256), - [sym__simple_command] = STATE(256), - [sym__tmp_command] = STATE(256), - [sym__iter_command] = STATE(256), - [sym__pipe_command] = STATE(256), - [sym_grep_command] = STATE(256), - [sym_html_disable_command] = STATE(256), - [sym_html_enable_command] = STATE(256), - [sym_pipe_command] = STATE(256), - [sym_iter_file_lines_command] = STATE(256), - [sym_iter_offsets_command] = STATE(256), - [sym_iter_offsetssizes_command] = STATE(256), - [sym_iter_hit_command] = STATE(256), - [sym_iter_interpret_command] = STATE(256), - [sym_iter_interpret_offsetssizes_command] = STATE(256), - [sym_iter_comment_command] = STATE(256), - [sym_iter_dbta_command] = STATE(256), - [sym_iter_dbtb_command] = STATE(256), - [sym_iter_dbts_command] = STATE(256), - [sym_iter_threads_command] = STATE(256), - [sym_iter_bbs_command] = STATE(256), - [sym_iter_instrs_command] = STATE(256), - [sym_iter_import_command] = STATE(256), - [sym_iter_sections_command] = STATE(256), - [sym_iter_segments_command] = STATE(256), - [sym_iter_symbol_command] = STATE(256), - [sym_iter_string_command] = STATE(256), - [sym_iter_flags_command] = STATE(256), - [sym_iter_function_command] = STATE(256), - [sym_iter_iomap_command] = STATE(256), - [sym_iter_dbgmap_command] = STATE(256), - [sym_iter_register_command] = STATE(256), - [sym_iter_step_command] = STATE(256), - [sym_tmp_seek_command] = STATE(256), - [sym_tmp_blksz_command] = STATE(256), - [sym_tmp_fromto_command] = STATE(256), - [sym_tmp_arch_command] = STATE(256), - [sym_tmp_bits_command] = STATE(256), - [sym_tmp_nthi_command] = STATE(256), - [sym_tmp_eval_command] = STATE(256), - [sym_tmp_fs_command] = STATE(256), - [sym_tmp_reli_command] = STATE(256), - [sym_tmp_kuery_command] = STATE(256), - [sym_tmp_fd_command] = STATE(256), - [sym_tmp_reg_command] = STATE(256), - [sym_tmp_file_command] = STATE(256), - [sym_tmp_string_command] = STATE(256), - [sym_tmp_value_command] = STATE(256), - [sym_tmp_hex_command] = STATE(256), - [sym_number_command] = STATE(256), - [sym_help_command] = STATE(256), - [sym_arged_command] = STATE(256), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(256), - [sym_Cf_cmd] = STATE(256), - [sym_pf_new_cmd] = STATE(256), - [sym_pf_dot_cmd] = STATE(256), - [sym_pf_cmd] = STATE(256), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(256), - [sym_redirect_command] = STATE(424), + [sym__commands_singleline] = STATE(466), + [sym__command] = STATE(441), + [sym_legacy_quoted_command] = STATE(266), + [sym__simple_command] = STATE(266), + [sym__tmp_command] = STATE(266), + [sym__iter_command] = STATE(266), + [sym__pipe_command] = STATE(266), + [sym_grep_command] = STATE(266), + [sym_html_disable_command] = STATE(266), + [sym_html_enable_command] = STATE(266), + [sym_pipe_command] = STATE(266), + [sym_iter_file_lines_command] = STATE(266), + [sym_iter_offsets_command] = STATE(266), + [sym_iter_offsetssizes_command] = STATE(266), + [sym_iter_hit_command] = STATE(266), + [sym_iter_interpret_command] = STATE(266), + [sym_iter_interpret_offsetssizes_command] = STATE(266), + [sym_iter_comment_command] = STATE(266), + [sym_iter_dbta_command] = STATE(266), + [sym_iter_dbtb_command] = STATE(266), + [sym_iter_dbts_command] = STATE(266), + [sym_iter_threads_command] = STATE(266), + [sym_iter_bbs_command] = STATE(266), + [sym_iter_instrs_command] = STATE(266), + [sym_iter_import_command] = STATE(266), + [sym_iter_sections_command] = STATE(266), + [sym_iter_segments_command] = STATE(266), + [sym_iter_symbol_command] = STATE(266), + [sym_iter_string_command] = STATE(266), + [sym_iter_flags_command] = STATE(266), + [sym_iter_function_command] = STATE(266), + [sym_iter_iomap_command] = STATE(266), + [sym_iter_dbgmap_command] = STATE(266), + [sym_iter_register_command] = STATE(266), + [sym_iter_step_command] = STATE(266), + [sym_tmp_seek_command] = STATE(266), + [sym_tmp_blksz_command] = STATE(266), + [sym_tmp_fromto_command] = STATE(266), + [sym_tmp_arch_command] = STATE(266), + [sym_tmp_bits_command] = STATE(266), + [sym_tmp_nthi_command] = STATE(266), + [sym_tmp_eval_command] = STATE(266), + [sym_tmp_fs_command] = STATE(266), + [sym_tmp_reli_command] = STATE(266), + [sym_tmp_kuery_command] = STATE(266), + [sym_tmp_fd_command] = STATE(266), + [sym_tmp_reg_command] = STATE(266), + [sym_tmp_file_command] = STATE(266), + [sym_tmp_string_command] = STATE(266), + [sym_tmp_value_command] = STATE(266), + [sym_tmp_hex_command] = STATE(266), + [sym_number_command] = STATE(266), + [sym_help_command] = STATE(266), + [sym_arged_command] = STATE(266), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(266), + [sym_Cf_cmd] = STATE(266), + [sym_pf_new_cmd] = STATE(266), + [sym_pf_dot_cmd] = STATE(266), + [sym_pf_cmd] = STATE(266), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(266), + [sym_redirect_command] = STATE(441), [sym__dec_number] = STATE(2), [aux_sym__commands_singleline_repeat1] = STATE(33), [anon_sym_DQUOTE] = ACTIONS(7), @@ -6448,7 +6524,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_question_mark_identifier] = ACTIONS(41), [sym_pointer_identifier] = ACTIONS(43), [sym_macro_identifier] = ACTIONS(45), - [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(97), [aux_sym__dec_number_token1] = ACTIONS(49), [aux_sym__dec_number_token2] = ACTIONS(51), [sym__comment] = ACTIONS(3), @@ -6456,185 +6532,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__help_command] = ACTIONS(55), }, [15] = { - [sym__commands_singleline] = STATE(454), - [sym__command] = STATE(423), - [sym_legacy_quoted_command] = STATE(255), - [sym__simple_command] = STATE(255), - [sym__tmp_command] = STATE(255), - [sym__iter_command] = STATE(255), - [sym__pipe_command] = STATE(255), - [sym_grep_command] = STATE(255), - [sym_html_disable_command] = STATE(255), - [sym_html_enable_command] = STATE(255), - [sym_pipe_command] = STATE(255), - [sym_iter_file_lines_command] = STATE(255), - [sym_iter_offsets_command] = STATE(255), - [sym_iter_offsetssizes_command] = STATE(255), - [sym_iter_hit_command] = STATE(255), - [sym_iter_interpret_command] = STATE(255), - [sym_iter_interpret_offsetssizes_command] = STATE(255), - [sym_iter_comment_command] = STATE(255), - [sym_iter_dbta_command] = STATE(255), - [sym_iter_dbtb_command] = STATE(255), - [sym_iter_dbts_command] = STATE(255), - [sym_iter_threads_command] = STATE(255), - [sym_iter_bbs_command] = STATE(255), - [sym_iter_instrs_command] = STATE(255), - [sym_iter_import_command] = STATE(255), - [sym_iter_sections_command] = STATE(255), - [sym_iter_segments_command] = STATE(255), - [sym_iter_symbol_command] = STATE(255), - [sym_iter_string_command] = STATE(255), - [sym_iter_flags_command] = STATE(255), - [sym_iter_function_command] = STATE(255), - [sym_iter_iomap_command] = STATE(255), - [sym_iter_dbgmap_command] = STATE(255), - [sym_iter_register_command] = STATE(255), - [sym_iter_step_command] = STATE(255), - [sym_tmp_seek_command] = STATE(255), - [sym_tmp_blksz_command] = STATE(255), - [sym_tmp_fromto_command] = STATE(255), - [sym_tmp_arch_command] = STATE(255), - [sym_tmp_bits_command] = STATE(255), - [sym_tmp_nthi_command] = STATE(255), - [sym_tmp_eval_command] = STATE(255), - [sym_tmp_fs_command] = STATE(255), - [sym_tmp_reli_command] = STATE(255), - [sym_tmp_kuery_command] = STATE(255), - [sym_tmp_fd_command] = STATE(255), - [sym_tmp_reg_command] = STATE(255), - [sym_tmp_file_command] = STATE(255), - [sym_tmp_string_command] = STATE(255), - [sym_tmp_value_command] = STATE(255), - [sym_tmp_hex_command] = STATE(255), - [sym_number_command] = STATE(255), - [sym_help_command] = STATE(255), - [sym_arged_command] = STATE(255), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(274), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(255), - [sym_Cf_cmd] = STATE(255), - [sym_pf_new_cmd] = STATE(255), - [sym_pf_dot_cmd] = STATE(255), - [sym_pf_cmd] = STATE(255), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(90), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(255), - [sym_redirect_command] = STATE(423), - [sym__dec_number] = STATE(5), - [aux_sym__commands_singleline_repeat1] = STATE(34), - [anon_sym_DQUOTE] = ACTIONS(7), - [anon_sym_0] = ACTIONS(9), - [aux_sym_number_command_token1] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(65), - [aux_sym__interpret_command_token1] = ACTIONS(67), - [aux_sym__interpret_command_token3] = ACTIONS(69), - [anon_sym_DOT_BANG] = ACTIONS(19), - [anon_sym_DOT_LPAREN] = ACTIONS(21), - [anon_sym_DOT_SLASH] = ACTIONS(23), - [anon_sym_pfo] = ACTIONS(71), - [anon_sym_Cf] = ACTIONS(73), - [sym_pf_dot_cmd_identifier] = ACTIONS(75), - [sym_pf_dot_full_cmd_identifier] = ACTIONS(77), - [aux_sym_pf_cmd_token1] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(35), - [anon_sym_env] = ACTIONS(35), - [anon_sym_DOT_DOT_DOT] = ACTIONS(37), - [sym_system_identifier] = ACTIONS(81), - [sym_question_mark_identifier] = ACTIONS(83), - [sym_pointer_identifier] = ACTIONS(43), - [sym_macro_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(97), - [aux_sym__dec_number_token1] = ACTIONS(49), - [aux_sym__dec_number_token2] = ACTIONS(51), - [sym__comment] = ACTIONS(3), - [sym_cmd_identifier] = ACTIONS(87), - [sym__help_command] = ACTIONS(89), - }, - [16] = { - [sym__commands_singleline] = STATE(453), - [sym__command] = STATE(424), - [sym_legacy_quoted_command] = STATE(256), - [sym__simple_command] = STATE(256), - [sym__tmp_command] = STATE(256), - [sym__iter_command] = STATE(256), - [sym__pipe_command] = STATE(256), - [sym_grep_command] = STATE(256), - [sym_html_disable_command] = STATE(256), - [sym_html_enable_command] = STATE(256), - [sym_pipe_command] = STATE(256), - [sym_iter_file_lines_command] = STATE(256), - [sym_iter_offsets_command] = STATE(256), - [sym_iter_offsetssizes_command] = STATE(256), - [sym_iter_hit_command] = STATE(256), - [sym_iter_interpret_command] = STATE(256), - [sym_iter_interpret_offsetssizes_command] = STATE(256), - [sym_iter_comment_command] = STATE(256), - [sym_iter_dbta_command] = STATE(256), - [sym_iter_dbtb_command] = STATE(256), - [sym_iter_dbts_command] = STATE(256), - [sym_iter_threads_command] = STATE(256), - [sym_iter_bbs_command] = STATE(256), - [sym_iter_instrs_command] = STATE(256), - [sym_iter_import_command] = STATE(256), - [sym_iter_sections_command] = STATE(256), - [sym_iter_segments_command] = STATE(256), - [sym_iter_symbol_command] = STATE(256), - [sym_iter_string_command] = STATE(256), - [sym_iter_flags_command] = STATE(256), - [sym_iter_function_command] = STATE(256), - [sym_iter_iomap_command] = STATE(256), - [sym_iter_dbgmap_command] = STATE(256), - [sym_iter_register_command] = STATE(256), - [sym_iter_step_command] = STATE(256), - [sym_tmp_seek_command] = STATE(256), - [sym_tmp_blksz_command] = STATE(256), - [sym_tmp_fromto_command] = STATE(256), - [sym_tmp_arch_command] = STATE(256), - [sym_tmp_bits_command] = STATE(256), - [sym_tmp_nthi_command] = STATE(256), - [sym_tmp_eval_command] = STATE(256), - [sym_tmp_fs_command] = STATE(256), - [sym_tmp_reli_command] = STATE(256), - [sym_tmp_kuery_command] = STATE(256), - [sym_tmp_fd_command] = STATE(256), - [sym_tmp_reg_command] = STATE(256), - [sym_tmp_file_command] = STATE(256), - [sym_tmp_string_command] = STATE(256), - [sym_tmp_value_command] = STATE(256), - [sym_tmp_hex_command] = STATE(256), - [sym_number_command] = STATE(256), - [sym_help_command] = STATE(256), - [sym_arged_command] = STATE(256), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(256), - [sym_Cf_cmd] = STATE(256), - [sym_pf_new_cmd] = STATE(256), - [sym_pf_dot_cmd] = STATE(256), - [sym_pf_cmd] = STATE(256), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(256), - [sym_redirect_command] = STATE(424), + [sym__commands_singleline] = STATE(468), + [sym__command] = STATE(441), + [sym_legacy_quoted_command] = STATE(266), + [sym__simple_command] = STATE(266), + [sym__tmp_command] = STATE(266), + [sym__iter_command] = STATE(266), + [sym__pipe_command] = STATE(266), + [sym_grep_command] = STATE(266), + [sym_html_disable_command] = STATE(266), + [sym_html_enable_command] = STATE(266), + [sym_pipe_command] = STATE(266), + [sym_iter_file_lines_command] = STATE(266), + [sym_iter_offsets_command] = STATE(266), + [sym_iter_offsetssizes_command] = STATE(266), + [sym_iter_hit_command] = STATE(266), + [sym_iter_interpret_command] = STATE(266), + [sym_iter_interpret_offsetssizes_command] = STATE(266), + [sym_iter_comment_command] = STATE(266), + [sym_iter_dbta_command] = STATE(266), + [sym_iter_dbtb_command] = STATE(266), + [sym_iter_dbts_command] = STATE(266), + [sym_iter_threads_command] = STATE(266), + [sym_iter_bbs_command] = STATE(266), + [sym_iter_instrs_command] = STATE(266), + [sym_iter_import_command] = STATE(266), + [sym_iter_sections_command] = STATE(266), + [sym_iter_segments_command] = STATE(266), + [sym_iter_symbol_command] = STATE(266), + [sym_iter_string_command] = STATE(266), + [sym_iter_flags_command] = STATE(266), + [sym_iter_function_command] = STATE(266), + [sym_iter_iomap_command] = STATE(266), + [sym_iter_dbgmap_command] = STATE(266), + [sym_iter_register_command] = STATE(266), + [sym_iter_step_command] = STATE(266), + [sym_tmp_seek_command] = STATE(266), + [sym_tmp_blksz_command] = STATE(266), + [sym_tmp_fromto_command] = STATE(266), + [sym_tmp_arch_command] = STATE(266), + [sym_tmp_bits_command] = STATE(266), + [sym_tmp_nthi_command] = STATE(266), + [sym_tmp_eval_command] = STATE(266), + [sym_tmp_fs_command] = STATE(266), + [sym_tmp_reli_command] = STATE(266), + [sym_tmp_kuery_command] = STATE(266), + [sym_tmp_fd_command] = STATE(266), + [sym_tmp_reg_command] = STATE(266), + [sym_tmp_file_command] = STATE(266), + [sym_tmp_string_command] = STATE(266), + [sym_tmp_value_command] = STATE(266), + [sym_tmp_hex_command] = STATE(266), + [sym_number_command] = STATE(266), + [sym_help_command] = STATE(266), + [sym_arged_command] = STATE(266), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(266), + [sym_Cf_cmd] = STATE(266), + [sym_pf_new_cmd] = STATE(266), + [sym_pf_dot_cmd] = STATE(266), + [sym_pf_cmd] = STATE(266), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(266), + [sym_redirect_command] = STATE(441), [sym__dec_number] = STATE(2), [aux_sym__commands_singleline_repeat1] = STATE(33), [anon_sym_DQUOTE] = ACTIONS(7), @@ -6658,7 +6629,112 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_question_mark_identifier] = ACTIONS(41), [sym_pointer_identifier] = ACTIONS(43), [sym_macro_identifier] = ACTIONS(45), - [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(97), + [aux_sym__dec_number_token1] = ACTIONS(49), + [aux_sym__dec_number_token2] = ACTIONS(51), + [sym__comment] = ACTIONS(3), + [sym_cmd_identifier] = ACTIONS(53), + [sym__help_command] = ACTIONS(55), + }, + [16] = { + [sym__commands_singleline] = STATE(462), + [sym__command] = STATE(441), + [sym_legacy_quoted_command] = STATE(266), + [sym__simple_command] = STATE(266), + [sym__tmp_command] = STATE(266), + [sym__iter_command] = STATE(266), + [sym__pipe_command] = STATE(266), + [sym_grep_command] = STATE(266), + [sym_html_disable_command] = STATE(266), + [sym_html_enable_command] = STATE(266), + [sym_pipe_command] = STATE(266), + [sym_iter_file_lines_command] = STATE(266), + [sym_iter_offsets_command] = STATE(266), + [sym_iter_offsetssizes_command] = STATE(266), + [sym_iter_hit_command] = STATE(266), + [sym_iter_interpret_command] = STATE(266), + [sym_iter_interpret_offsetssizes_command] = STATE(266), + [sym_iter_comment_command] = STATE(266), + [sym_iter_dbta_command] = STATE(266), + [sym_iter_dbtb_command] = STATE(266), + [sym_iter_dbts_command] = STATE(266), + [sym_iter_threads_command] = STATE(266), + [sym_iter_bbs_command] = STATE(266), + [sym_iter_instrs_command] = STATE(266), + [sym_iter_import_command] = STATE(266), + [sym_iter_sections_command] = STATE(266), + [sym_iter_segments_command] = STATE(266), + [sym_iter_symbol_command] = STATE(266), + [sym_iter_string_command] = STATE(266), + [sym_iter_flags_command] = STATE(266), + [sym_iter_function_command] = STATE(266), + [sym_iter_iomap_command] = STATE(266), + [sym_iter_dbgmap_command] = STATE(266), + [sym_iter_register_command] = STATE(266), + [sym_iter_step_command] = STATE(266), + [sym_tmp_seek_command] = STATE(266), + [sym_tmp_blksz_command] = STATE(266), + [sym_tmp_fromto_command] = STATE(266), + [sym_tmp_arch_command] = STATE(266), + [sym_tmp_bits_command] = STATE(266), + [sym_tmp_nthi_command] = STATE(266), + [sym_tmp_eval_command] = STATE(266), + [sym_tmp_fs_command] = STATE(266), + [sym_tmp_reli_command] = STATE(266), + [sym_tmp_kuery_command] = STATE(266), + [sym_tmp_fd_command] = STATE(266), + [sym_tmp_reg_command] = STATE(266), + [sym_tmp_file_command] = STATE(266), + [sym_tmp_string_command] = STATE(266), + [sym_tmp_value_command] = STATE(266), + [sym_tmp_hex_command] = STATE(266), + [sym_number_command] = STATE(266), + [sym_help_command] = STATE(266), + [sym_arged_command] = STATE(266), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(266), + [sym_Cf_cmd] = STATE(266), + [sym_pf_new_cmd] = STATE(266), + [sym_pf_dot_cmd] = STATE(266), + [sym_pf_cmd] = STATE(266), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(266), + [sym_redirect_command] = STATE(441), + [sym__dec_number] = STATE(2), + [aux_sym__commands_singleline_repeat1] = STATE(33), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_0] = ACTIONS(9), + [aux_sym_number_command_token1] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym__interpret_command_token1] = ACTIONS(15), + [aux_sym__interpret_command_token3] = ACTIONS(17), + [anon_sym_DOT_BANG] = ACTIONS(19), + [anon_sym_DOT_LPAREN] = ACTIONS(21), + [anon_sym_DOT_SLASH] = ACTIONS(23), + [anon_sym_pfo] = ACTIONS(25), + [anon_sym_Cf] = ACTIONS(27), + [sym_pf_dot_cmd_identifier] = ACTIONS(29), + [sym_pf_dot_full_cmd_identifier] = ACTIONS(31), + [aux_sym_pf_cmd_token1] = ACTIONS(33), + [anon_sym_PERCENT] = ACTIONS(35), + [anon_sym_env] = ACTIONS(35), + [anon_sym_DOT_DOT_DOT] = ACTIONS(37), + [sym_system_identifier] = ACTIONS(39), + [sym_question_mark_identifier] = ACTIONS(41), + [sym_pointer_identifier] = ACTIONS(43), + [sym_macro_identifier] = ACTIONS(45), + [anon_sym_SEMI] = ACTIONS(97), [aux_sym__dec_number_token1] = ACTIONS(49), [aux_sym__dec_number_token2] = ACTIONS(51), [sym__comment] = ACTIONS(3), @@ -6666,187 +6742,187 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__help_command] = ACTIONS(55), }, [17] = { - [sym__commands_singleline] = STATE(483), - [sym__command] = STATE(423), - [sym_legacy_quoted_command] = STATE(255), - [sym__simple_command] = STATE(255), - [sym__tmp_command] = STATE(255), - [sym__iter_command] = STATE(255), - [sym__pipe_command] = STATE(255), - [sym_grep_command] = STATE(255), - [sym_html_disable_command] = STATE(255), - [sym_html_enable_command] = STATE(255), - [sym_pipe_command] = STATE(255), - [sym_iter_file_lines_command] = STATE(255), - [sym_iter_offsets_command] = STATE(255), - [sym_iter_offsetssizes_command] = STATE(255), - [sym_iter_hit_command] = STATE(255), - [sym_iter_interpret_command] = STATE(255), - [sym_iter_interpret_offsetssizes_command] = STATE(255), - [sym_iter_comment_command] = STATE(255), - [sym_iter_dbta_command] = STATE(255), - [sym_iter_dbtb_command] = STATE(255), - [sym_iter_dbts_command] = STATE(255), - [sym_iter_threads_command] = STATE(255), - [sym_iter_bbs_command] = STATE(255), - [sym_iter_instrs_command] = STATE(255), - [sym_iter_import_command] = STATE(255), - [sym_iter_sections_command] = STATE(255), - [sym_iter_segments_command] = STATE(255), - [sym_iter_symbol_command] = STATE(255), - [sym_iter_string_command] = STATE(255), - [sym_iter_flags_command] = STATE(255), - [sym_iter_function_command] = STATE(255), - [sym_iter_iomap_command] = STATE(255), - [sym_iter_dbgmap_command] = STATE(255), - [sym_iter_register_command] = STATE(255), - [sym_iter_step_command] = STATE(255), - [sym_tmp_seek_command] = STATE(255), - [sym_tmp_blksz_command] = STATE(255), - [sym_tmp_fromto_command] = STATE(255), - [sym_tmp_arch_command] = STATE(255), - [sym_tmp_bits_command] = STATE(255), - [sym_tmp_nthi_command] = STATE(255), - [sym_tmp_eval_command] = STATE(255), - [sym_tmp_fs_command] = STATE(255), - [sym_tmp_reli_command] = STATE(255), - [sym_tmp_kuery_command] = STATE(255), - [sym_tmp_fd_command] = STATE(255), - [sym_tmp_reg_command] = STATE(255), - [sym_tmp_file_command] = STATE(255), - [sym_tmp_string_command] = STATE(255), - [sym_tmp_value_command] = STATE(255), - [sym_tmp_hex_command] = STATE(255), - [sym_number_command] = STATE(255), - [sym_help_command] = STATE(255), - [sym_arged_command] = STATE(255), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(274), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(255), - [sym_Cf_cmd] = STATE(255), - [sym_pf_new_cmd] = STATE(255), - [sym_pf_dot_cmd] = STATE(255), - [sym_pf_cmd] = STATE(255), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(90), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(255), - [sym_redirect_command] = STATE(423), - [sym__dec_number] = STATE(5), - [aux_sym__commands_singleline_repeat1] = STATE(34), + [sym__commands_singleline] = STATE(459), + [sym__command] = STATE(441), + [sym_legacy_quoted_command] = STATE(266), + [sym__simple_command] = STATE(266), + [sym__tmp_command] = STATE(266), + [sym__iter_command] = STATE(266), + [sym__pipe_command] = STATE(266), + [sym_grep_command] = STATE(266), + [sym_html_disable_command] = STATE(266), + [sym_html_enable_command] = STATE(266), + [sym_pipe_command] = STATE(266), + [sym_iter_file_lines_command] = STATE(266), + [sym_iter_offsets_command] = STATE(266), + [sym_iter_offsetssizes_command] = STATE(266), + [sym_iter_hit_command] = STATE(266), + [sym_iter_interpret_command] = STATE(266), + [sym_iter_interpret_offsetssizes_command] = STATE(266), + [sym_iter_comment_command] = STATE(266), + [sym_iter_dbta_command] = STATE(266), + [sym_iter_dbtb_command] = STATE(266), + [sym_iter_dbts_command] = STATE(266), + [sym_iter_threads_command] = STATE(266), + [sym_iter_bbs_command] = STATE(266), + [sym_iter_instrs_command] = STATE(266), + [sym_iter_import_command] = STATE(266), + [sym_iter_sections_command] = STATE(266), + [sym_iter_segments_command] = STATE(266), + [sym_iter_symbol_command] = STATE(266), + [sym_iter_string_command] = STATE(266), + [sym_iter_flags_command] = STATE(266), + [sym_iter_function_command] = STATE(266), + [sym_iter_iomap_command] = STATE(266), + [sym_iter_dbgmap_command] = STATE(266), + [sym_iter_register_command] = STATE(266), + [sym_iter_step_command] = STATE(266), + [sym_tmp_seek_command] = STATE(266), + [sym_tmp_blksz_command] = STATE(266), + [sym_tmp_fromto_command] = STATE(266), + [sym_tmp_arch_command] = STATE(266), + [sym_tmp_bits_command] = STATE(266), + [sym_tmp_nthi_command] = STATE(266), + [sym_tmp_eval_command] = STATE(266), + [sym_tmp_fs_command] = STATE(266), + [sym_tmp_reli_command] = STATE(266), + [sym_tmp_kuery_command] = STATE(266), + [sym_tmp_fd_command] = STATE(266), + [sym_tmp_reg_command] = STATE(266), + [sym_tmp_file_command] = STATE(266), + [sym_tmp_string_command] = STATE(266), + [sym_tmp_value_command] = STATE(266), + [sym_tmp_hex_command] = STATE(266), + [sym_number_command] = STATE(266), + [sym_help_command] = STATE(266), + [sym_arged_command] = STATE(266), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(266), + [sym_Cf_cmd] = STATE(266), + [sym_pf_new_cmd] = STATE(266), + [sym_pf_dot_cmd] = STATE(266), + [sym_pf_cmd] = STATE(266), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(266), + [sym_redirect_command] = STATE(441), + [sym__dec_number] = STATE(2), + [aux_sym__commands_singleline_repeat1] = STATE(33), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_0] = ACTIONS(9), [aux_sym_number_command_token1] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(65), - [aux_sym__interpret_command_token1] = ACTIONS(67), - [aux_sym__interpret_command_token3] = ACTIONS(69), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym__interpret_command_token1] = ACTIONS(15), + [aux_sym__interpret_command_token3] = ACTIONS(17), [anon_sym_DOT_BANG] = ACTIONS(19), [anon_sym_DOT_LPAREN] = ACTIONS(21), [anon_sym_DOT_SLASH] = ACTIONS(23), - [anon_sym_pfo] = ACTIONS(71), - [anon_sym_Cf] = ACTIONS(73), - [sym_pf_dot_cmd_identifier] = ACTIONS(75), - [sym_pf_dot_full_cmd_identifier] = ACTIONS(77), - [aux_sym_pf_cmd_token1] = ACTIONS(79), + [anon_sym_pfo] = ACTIONS(25), + [anon_sym_Cf] = ACTIONS(27), + [sym_pf_dot_cmd_identifier] = ACTIONS(29), + [sym_pf_dot_full_cmd_identifier] = ACTIONS(31), + [aux_sym_pf_cmd_token1] = ACTIONS(33), [anon_sym_PERCENT] = ACTIONS(35), [anon_sym_env] = ACTIONS(35), [anon_sym_DOT_DOT_DOT] = ACTIONS(37), - [sym_system_identifier] = ACTIONS(81), - [sym_question_mark_identifier] = ACTIONS(83), + [sym_system_identifier] = ACTIONS(39), + [sym_question_mark_identifier] = ACTIONS(41), [sym_pointer_identifier] = ACTIONS(43), - [sym_macro_identifier] = ACTIONS(85), + [sym_macro_identifier] = ACTIONS(45), [anon_sym_SEMI] = ACTIONS(97), [aux_sym__dec_number_token1] = ACTIONS(49), [aux_sym__dec_number_token2] = ACTIONS(51), [sym__comment] = ACTIONS(3), - [sym_cmd_identifier] = ACTIONS(87), - [sym__help_command] = ACTIONS(89), + [sym_cmd_identifier] = ACTIONS(53), + [sym__help_command] = ACTIONS(55), }, [18] = { - [sym__commands_singleline] = STATE(452), - [sym__command] = STATE(423), - [sym_legacy_quoted_command] = STATE(255), - [sym__simple_command] = STATE(255), - [sym__tmp_command] = STATE(255), - [sym__iter_command] = STATE(255), - [sym__pipe_command] = STATE(255), - [sym_grep_command] = STATE(255), - [sym_html_disable_command] = STATE(255), - [sym_html_enable_command] = STATE(255), - [sym_pipe_command] = STATE(255), - [sym_iter_file_lines_command] = STATE(255), - [sym_iter_offsets_command] = STATE(255), - [sym_iter_offsetssizes_command] = STATE(255), - [sym_iter_hit_command] = STATE(255), - [sym_iter_interpret_command] = STATE(255), - [sym_iter_interpret_offsetssizes_command] = STATE(255), - [sym_iter_comment_command] = STATE(255), - [sym_iter_dbta_command] = STATE(255), - [sym_iter_dbtb_command] = STATE(255), - [sym_iter_dbts_command] = STATE(255), - [sym_iter_threads_command] = STATE(255), - [sym_iter_bbs_command] = STATE(255), - [sym_iter_instrs_command] = STATE(255), - [sym_iter_import_command] = STATE(255), - [sym_iter_sections_command] = STATE(255), - [sym_iter_segments_command] = STATE(255), - [sym_iter_symbol_command] = STATE(255), - [sym_iter_string_command] = STATE(255), - [sym_iter_flags_command] = STATE(255), - [sym_iter_function_command] = STATE(255), - [sym_iter_iomap_command] = STATE(255), - [sym_iter_dbgmap_command] = STATE(255), - [sym_iter_register_command] = STATE(255), - [sym_iter_step_command] = STATE(255), - [sym_tmp_seek_command] = STATE(255), - [sym_tmp_blksz_command] = STATE(255), - [sym_tmp_fromto_command] = STATE(255), - [sym_tmp_arch_command] = STATE(255), - [sym_tmp_bits_command] = STATE(255), - [sym_tmp_nthi_command] = STATE(255), - [sym_tmp_eval_command] = STATE(255), - [sym_tmp_fs_command] = STATE(255), - [sym_tmp_reli_command] = STATE(255), - [sym_tmp_kuery_command] = STATE(255), - [sym_tmp_fd_command] = STATE(255), - [sym_tmp_reg_command] = STATE(255), - [sym_tmp_file_command] = STATE(255), - [sym_tmp_string_command] = STATE(255), - [sym_tmp_value_command] = STATE(255), - [sym_tmp_hex_command] = STATE(255), - [sym_number_command] = STATE(255), - [sym_help_command] = STATE(255), - [sym_arged_command] = STATE(255), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(274), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(255), - [sym_Cf_cmd] = STATE(255), - [sym_pf_new_cmd] = STATE(255), - [sym_pf_dot_cmd] = STATE(255), - [sym_pf_cmd] = STATE(255), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(90), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(255), - [sym_redirect_command] = STATE(423), + [sym__commands_singleline] = STATE(474), + [sym__command] = STATE(426), + [sym_legacy_quoted_command] = STATE(265), + [sym__simple_command] = STATE(265), + [sym__tmp_command] = STATE(265), + [sym__iter_command] = STATE(265), + [sym__pipe_command] = STATE(265), + [sym_grep_command] = STATE(265), + [sym_html_disable_command] = STATE(265), + [sym_html_enable_command] = STATE(265), + [sym_pipe_command] = STATE(265), + [sym_iter_file_lines_command] = STATE(265), + [sym_iter_offsets_command] = STATE(265), + [sym_iter_offsetssizes_command] = STATE(265), + [sym_iter_hit_command] = STATE(265), + [sym_iter_interpret_command] = STATE(265), + [sym_iter_interpret_offsetssizes_command] = STATE(265), + [sym_iter_comment_command] = STATE(265), + [sym_iter_dbta_command] = STATE(265), + [sym_iter_dbtb_command] = STATE(265), + [sym_iter_dbts_command] = STATE(265), + [sym_iter_threads_command] = STATE(265), + [sym_iter_bbs_command] = STATE(265), + [sym_iter_instrs_command] = STATE(265), + [sym_iter_import_command] = STATE(265), + [sym_iter_sections_command] = STATE(265), + [sym_iter_segments_command] = STATE(265), + [sym_iter_symbol_command] = STATE(265), + [sym_iter_string_command] = STATE(265), + [sym_iter_flags_command] = STATE(265), + [sym_iter_function_command] = STATE(265), + [sym_iter_iomap_command] = STATE(265), + [sym_iter_dbgmap_command] = STATE(265), + [sym_iter_register_command] = STATE(265), + [sym_iter_step_command] = STATE(265), + [sym_tmp_seek_command] = STATE(265), + [sym_tmp_blksz_command] = STATE(265), + [sym_tmp_fromto_command] = STATE(265), + [sym_tmp_arch_command] = STATE(265), + [sym_tmp_bits_command] = STATE(265), + [sym_tmp_nthi_command] = STATE(265), + [sym_tmp_eval_command] = STATE(265), + [sym_tmp_fs_command] = STATE(265), + [sym_tmp_reli_command] = STATE(265), + [sym_tmp_kuery_command] = STATE(265), + [sym_tmp_fd_command] = STATE(265), + [sym_tmp_reg_command] = STATE(265), + [sym_tmp_file_command] = STATE(265), + [sym_tmp_string_command] = STATE(265), + [sym_tmp_value_command] = STATE(265), + [sym_tmp_hex_command] = STATE(265), + [sym_number_command] = STATE(265), + [sym_help_command] = STATE(265), + [sym_arged_command] = STATE(265), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(281), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(265), + [sym_Cf_cmd] = STATE(265), + [sym_pf_new_cmd] = STATE(265), + [sym_pf_dot_cmd] = STATE(265), + [sym_pf_cmd] = STATE(265), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(91), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(265), + [sym_redirect_command] = STATE(426), [sym__dec_number] = STATE(5), - [aux_sym__commands_singleline_repeat1] = STATE(34), + [aux_sym__commands_singleline_repeat1] = STATE(35), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_0] = ACTIONS(9), [aux_sym_number_command_token1] = ACTIONS(11), @@ -6868,7 +6944,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_question_mark_identifier] = ACTIONS(83), [sym_pointer_identifier] = ACTIONS(43), [sym_macro_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), [aux_sym__dec_number_token1] = ACTIONS(49), [aux_sym__dec_number_token2] = ACTIONS(51), [sym__comment] = ACTIONS(3), @@ -6876,187 +6952,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__help_command] = ACTIONS(89), }, [19] = { - [sym__commands_singleline] = STATE(487), - [sym__command] = STATE(424), - [sym_legacy_quoted_command] = STATE(256), - [sym__simple_command] = STATE(256), - [sym__tmp_command] = STATE(256), - [sym__iter_command] = STATE(256), - [sym__pipe_command] = STATE(256), - [sym_grep_command] = STATE(256), - [sym_html_disable_command] = STATE(256), - [sym_html_enable_command] = STATE(256), - [sym_pipe_command] = STATE(256), - [sym_iter_file_lines_command] = STATE(256), - [sym_iter_offsets_command] = STATE(256), - [sym_iter_offsetssizes_command] = STATE(256), - [sym_iter_hit_command] = STATE(256), - [sym_iter_interpret_command] = STATE(256), - [sym_iter_interpret_offsetssizes_command] = STATE(256), - [sym_iter_comment_command] = STATE(256), - [sym_iter_dbta_command] = STATE(256), - [sym_iter_dbtb_command] = STATE(256), - [sym_iter_dbts_command] = STATE(256), - [sym_iter_threads_command] = STATE(256), - [sym_iter_bbs_command] = STATE(256), - [sym_iter_instrs_command] = STATE(256), - [sym_iter_import_command] = STATE(256), - [sym_iter_sections_command] = STATE(256), - [sym_iter_segments_command] = STATE(256), - [sym_iter_symbol_command] = STATE(256), - [sym_iter_string_command] = STATE(256), - [sym_iter_flags_command] = STATE(256), - [sym_iter_function_command] = STATE(256), - [sym_iter_iomap_command] = STATE(256), - [sym_iter_dbgmap_command] = STATE(256), - [sym_iter_register_command] = STATE(256), - [sym_iter_step_command] = STATE(256), - [sym_tmp_seek_command] = STATE(256), - [sym_tmp_blksz_command] = STATE(256), - [sym_tmp_fromto_command] = STATE(256), - [sym_tmp_arch_command] = STATE(256), - [sym_tmp_bits_command] = STATE(256), - [sym_tmp_nthi_command] = STATE(256), - [sym_tmp_eval_command] = STATE(256), - [sym_tmp_fs_command] = STATE(256), - [sym_tmp_reli_command] = STATE(256), - [sym_tmp_kuery_command] = STATE(256), - [sym_tmp_fd_command] = STATE(256), - [sym_tmp_reg_command] = STATE(256), - [sym_tmp_file_command] = STATE(256), - [sym_tmp_string_command] = STATE(256), - [sym_tmp_value_command] = STATE(256), - [sym_tmp_hex_command] = STATE(256), - [sym_number_command] = STATE(256), - [sym_help_command] = STATE(256), - [sym_arged_command] = STATE(256), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), + [sym__commands_singleline] = STATE(467), + [sym__command] = STATE(426), + [sym_legacy_quoted_command] = STATE(265), + [sym__simple_command] = STATE(265), + [sym__tmp_command] = STATE(265), + [sym__iter_command] = STATE(265), + [sym__pipe_command] = STATE(265), + [sym_grep_command] = STATE(265), + [sym_html_disable_command] = STATE(265), + [sym_html_enable_command] = STATE(265), + [sym_pipe_command] = STATE(265), + [sym_iter_file_lines_command] = STATE(265), + [sym_iter_offsets_command] = STATE(265), + [sym_iter_offsetssizes_command] = STATE(265), + [sym_iter_hit_command] = STATE(265), + [sym_iter_interpret_command] = STATE(265), + [sym_iter_interpret_offsetssizes_command] = STATE(265), + [sym_iter_comment_command] = STATE(265), + [sym_iter_dbta_command] = STATE(265), + [sym_iter_dbtb_command] = STATE(265), + [sym_iter_dbts_command] = STATE(265), + [sym_iter_threads_command] = STATE(265), + [sym_iter_bbs_command] = STATE(265), + [sym_iter_instrs_command] = STATE(265), + [sym_iter_import_command] = STATE(265), + [sym_iter_sections_command] = STATE(265), + [sym_iter_segments_command] = STATE(265), + [sym_iter_symbol_command] = STATE(265), + [sym_iter_string_command] = STATE(265), + [sym_iter_flags_command] = STATE(265), + [sym_iter_function_command] = STATE(265), + [sym_iter_iomap_command] = STATE(265), + [sym_iter_dbgmap_command] = STATE(265), + [sym_iter_register_command] = STATE(265), + [sym_iter_step_command] = STATE(265), + [sym_tmp_seek_command] = STATE(265), + [sym_tmp_blksz_command] = STATE(265), + [sym_tmp_fromto_command] = STATE(265), + [sym_tmp_arch_command] = STATE(265), + [sym_tmp_bits_command] = STATE(265), + [sym_tmp_nthi_command] = STATE(265), + [sym_tmp_eval_command] = STATE(265), + [sym_tmp_fs_command] = STATE(265), + [sym_tmp_reli_command] = STATE(265), + [sym_tmp_kuery_command] = STATE(265), + [sym_tmp_fd_command] = STATE(265), + [sym_tmp_reg_command] = STATE(265), + [sym_tmp_file_command] = STATE(265), + [sym_tmp_string_command] = STATE(265), + [sym_tmp_value_command] = STATE(265), + [sym_tmp_hex_command] = STATE(265), + [sym_number_command] = STATE(265), + [sym_help_command] = STATE(265), + [sym_arged_command] = STATE(265), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(256), - [sym_Cf_cmd] = STATE(256), - [sym_pf_new_cmd] = STATE(256), - [sym_pf_dot_cmd] = STATE(256), - [sym_pf_cmd] = STATE(256), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(256), - [sym_redirect_command] = STATE(424), - [sym__dec_number] = STATE(2), - [aux_sym__commands_singleline_repeat1] = STATE(33), - [anon_sym_DQUOTE] = ACTIONS(7), - [anon_sym_0] = ACTIONS(9), - [aux_sym_number_command_token1] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym__interpret_command_token1] = ACTIONS(15), - [aux_sym__interpret_command_token3] = ACTIONS(17), - [anon_sym_DOT_BANG] = ACTIONS(19), - [anon_sym_DOT_LPAREN] = ACTIONS(21), - [anon_sym_DOT_SLASH] = ACTIONS(23), - [anon_sym_pfo] = ACTIONS(25), - [anon_sym_Cf] = ACTIONS(27), - [sym_pf_dot_cmd_identifier] = ACTIONS(29), - [sym_pf_dot_full_cmd_identifier] = ACTIONS(31), - [aux_sym_pf_cmd_token1] = ACTIONS(33), - [anon_sym_PERCENT] = ACTIONS(35), - [anon_sym_env] = ACTIONS(35), - [anon_sym_DOT_DOT_DOT] = ACTIONS(37), - [sym_system_identifier] = ACTIONS(39), - [sym_question_mark_identifier] = ACTIONS(41), - [sym_pointer_identifier] = ACTIONS(43), - [sym_macro_identifier] = ACTIONS(45), - [anon_sym_SEMI] = ACTIONS(99), - [aux_sym__dec_number_token1] = ACTIONS(49), - [aux_sym__dec_number_token2] = ACTIONS(51), - [sym__comment] = ACTIONS(3), - [sym_cmd_identifier] = ACTIONS(53), - [sym__help_command] = ACTIONS(55), - }, - [20] = { - [sym__commands_singleline] = STATE(488), - [sym__command] = STATE(423), - [sym_legacy_quoted_command] = STATE(255), - [sym__simple_command] = STATE(255), - [sym__tmp_command] = STATE(255), - [sym__iter_command] = STATE(255), - [sym__pipe_command] = STATE(255), - [sym_grep_command] = STATE(255), - [sym_html_disable_command] = STATE(255), - [sym_html_enable_command] = STATE(255), - [sym_pipe_command] = STATE(255), - [sym_iter_file_lines_command] = STATE(255), - [sym_iter_offsets_command] = STATE(255), - [sym_iter_offsetssizes_command] = STATE(255), - [sym_iter_hit_command] = STATE(255), - [sym_iter_interpret_command] = STATE(255), - [sym_iter_interpret_offsetssizes_command] = STATE(255), - [sym_iter_comment_command] = STATE(255), - [sym_iter_dbta_command] = STATE(255), - [sym_iter_dbtb_command] = STATE(255), - [sym_iter_dbts_command] = STATE(255), - [sym_iter_threads_command] = STATE(255), - [sym_iter_bbs_command] = STATE(255), - [sym_iter_instrs_command] = STATE(255), - [sym_iter_import_command] = STATE(255), - [sym_iter_sections_command] = STATE(255), - [sym_iter_segments_command] = STATE(255), - [sym_iter_symbol_command] = STATE(255), - [sym_iter_string_command] = STATE(255), - [sym_iter_flags_command] = STATE(255), - [sym_iter_function_command] = STATE(255), - [sym_iter_iomap_command] = STATE(255), - [sym_iter_dbgmap_command] = STATE(255), - [sym_iter_register_command] = STATE(255), - [sym_iter_step_command] = STATE(255), - [sym_tmp_seek_command] = STATE(255), - [sym_tmp_blksz_command] = STATE(255), - [sym_tmp_fromto_command] = STATE(255), - [sym_tmp_arch_command] = STATE(255), - [sym_tmp_bits_command] = STATE(255), - [sym_tmp_nthi_command] = STATE(255), - [sym_tmp_eval_command] = STATE(255), - [sym_tmp_fs_command] = STATE(255), - [sym_tmp_reli_command] = STATE(255), - [sym_tmp_kuery_command] = STATE(255), - [sym_tmp_fd_command] = STATE(255), - [sym_tmp_reg_command] = STATE(255), - [sym_tmp_file_command] = STATE(255), - [sym_tmp_string_command] = STATE(255), - [sym_tmp_value_command] = STATE(255), - [sym_tmp_hex_command] = STATE(255), - [sym_number_command] = STATE(255), - [sym_help_command] = STATE(255), - [sym_arged_command] = STATE(255), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(274), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(255), - [sym_Cf_cmd] = STATE(255), - [sym_pf_new_cmd] = STATE(255), - [sym_pf_dot_cmd] = STATE(255), - [sym_pf_cmd] = STATE(255), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(90), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(255), - [sym_redirect_command] = STATE(423), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(265), + [sym_Cf_cmd] = STATE(265), + [sym_pf_new_cmd] = STATE(265), + [sym_pf_dot_cmd] = STATE(265), + [sym_pf_cmd] = STATE(265), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(91), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(265), + [sym_redirect_command] = STATE(426), [sym__dec_number] = STATE(5), - [aux_sym__commands_singleline_repeat1] = STATE(34), + [aux_sym__commands_singleline_repeat1] = STATE(35), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_0] = ACTIONS(9), [aux_sym_number_command_token1] = ACTIONS(11), @@ -7078,88 +7049,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_question_mark_identifier] = ACTIONS(83), [sym_pointer_identifier] = ACTIONS(43), [sym_macro_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), [aux_sym__dec_number_token1] = ACTIONS(49), [aux_sym__dec_number_token2] = ACTIONS(51), [sym__comment] = ACTIONS(3), [sym_cmd_identifier] = ACTIONS(87), [sym__help_command] = ACTIONS(89), }, - [21] = { - [sym__commands_singleline] = STATE(473), - [sym__command] = STATE(424), - [sym_legacy_quoted_command] = STATE(256), - [sym__simple_command] = STATE(256), - [sym__tmp_command] = STATE(256), - [sym__iter_command] = STATE(256), - [sym__pipe_command] = STATE(256), - [sym_grep_command] = STATE(256), - [sym_html_disable_command] = STATE(256), - [sym_html_enable_command] = STATE(256), - [sym_pipe_command] = STATE(256), - [sym_iter_file_lines_command] = STATE(256), - [sym_iter_offsets_command] = STATE(256), - [sym_iter_offsetssizes_command] = STATE(256), - [sym_iter_hit_command] = STATE(256), - [sym_iter_interpret_command] = STATE(256), - [sym_iter_interpret_offsetssizes_command] = STATE(256), - [sym_iter_comment_command] = STATE(256), - [sym_iter_dbta_command] = STATE(256), - [sym_iter_dbtb_command] = STATE(256), - [sym_iter_dbts_command] = STATE(256), - [sym_iter_threads_command] = STATE(256), - [sym_iter_bbs_command] = STATE(256), - [sym_iter_instrs_command] = STATE(256), - [sym_iter_import_command] = STATE(256), - [sym_iter_sections_command] = STATE(256), - [sym_iter_segments_command] = STATE(256), - [sym_iter_symbol_command] = STATE(256), - [sym_iter_string_command] = STATE(256), - [sym_iter_flags_command] = STATE(256), - [sym_iter_function_command] = STATE(256), - [sym_iter_iomap_command] = STATE(256), - [sym_iter_dbgmap_command] = STATE(256), - [sym_iter_register_command] = STATE(256), - [sym_iter_step_command] = STATE(256), - [sym_tmp_seek_command] = STATE(256), - [sym_tmp_blksz_command] = STATE(256), - [sym_tmp_fromto_command] = STATE(256), - [sym_tmp_arch_command] = STATE(256), - [sym_tmp_bits_command] = STATE(256), - [sym_tmp_nthi_command] = STATE(256), - [sym_tmp_eval_command] = STATE(256), - [sym_tmp_fs_command] = STATE(256), - [sym_tmp_reli_command] = STATE(256), - [sym_tmp_kuery_command] = STATE(256), - [sym_tmp_fd_command] = STATE(256), - [sym_tmp_reg_command] = STATE(256), - [sym_tmp_file_command] = STATE(256), - [sym_tmp_string_command] = STATE(256), - [sym_tmp_value_command] = STATE(256), - [sym_tmp_hex_command] = STATE(256), - [sym_number_command] = STATE(256), - [sym_help_command] = STATE(256), - [sym_arged_command] = STATE(256), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(256), - [sym_Cf_cmd] = STATE(256), - [sym_pf_new_cmd] = STATE(256), - [sym_pf_dot_cmd] = STATE(256), - [sym_pf_cmd] = STATE(256), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(256), - [sym_redirect_command] = STATE(424), + [20] = { + [sym__commands_singleline] = STATE(488), + [sym__command] = STATE(441), + [sym_legacy_quoted_command] = STATE(266), + [sym__simple_command] = STATE(266), + [sym__tmp_command] = STATE(266), + [sym__iter_command] = STATE(266), + [sym__pipe_command] = STATE(266), + [sym_grep_command] = STATE(266), + [sym_html_disable_command] = STATE(266), + [sym_html_enable_command] = STATE(266), + [sym_pipe_command] = STATE(266), + [sym_iter_file_lines_command] = STATE(266), + [sym_iter_offsets_command] = STATE(266), + [sym_iter_offsetssizes_command] = STATE(266), + [sym_iter_hit_command] = STATE(266), + [sym_iter_interpret_command] = STATE(266), + [sym_iter_interpret_offsetssizes_command] = STATE(266), + [sym_iter_comment_command] = STATE(266), + [sym_iter_dbta_command] = STATE(266), + [sym_iter_dbtb_command] = STATE(266), + [sym_iter_dbts_command] = STATE(266), + [sym_iter_threads_command] = STATE(266), + [sym_iter_bbs_command] = STATE(266), + [sym_iter_instrs_command] = STATE(266), + [sym_iter_import_command] = STATE(266), + [sym_iter_sections_command] = STATE(266), + [sym_iter_segments_command] = STATE(266), + [sym_iter_symbol_command] = STATE(266), + [sym_iter_string_command] = STATE(266), + [sym_iter_flags_command] = STATE(266), + [sym_iter_function_command] = STATE(266), + [sym_iter_iomap_command] = STATE(266), + [sym_iter_dbgmap_command] = STATE(266), + [sym_iter_register_command] = STATE(266), + [sym_iter_step_command] = STATE(266), + [sym_tmp_seek_command] = STATE(266), + [sym_tmp_blksz_command] = STATE(266), + [sym_tmp_fromto_command] = STATE(266), + [sym_tmp_arch_command] = STATE(266), + [sym_tmp_bits_command] = STATE(266), + [sym_tmp_nthi_command] = STATE(266), + [sym_tmp_eval_command] = STATE(266), + [sym_tmp_fs_command] = STATE(266), + [sym_tmp_reli_command] = STATE(266), + [sym_tmp_kuery_command] = STATE(266), + [sym_tmp_fd_command] = STATE(266), + [sym_tmp_reg_command] = STATE(266), + [sym_tmp_file_command] = STATE(266), + [sym_tmp_string_command] = STATE(266), + [sym_tmp_value_command] = STATE(266), + [sym_tmp_hex_command] = STATE(266), + [sym_number_command] = STATE(266), + [sym_help_command] = STATE(266), + [sym_arged_command] = STATE(266), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(266), + [sym_Cf_cmd] = STATE(266), + [sym_pf_new_cmd] = STATE(266), + [sym_pf_dot_cmd] = STATE(266), + [sym_pf_cmd] = STATE(266), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(266), + [sym_redirect_command] = STATE(441), [sym__dec_number] = STATE(2), [aux_sym__commands_singleline_repeat1] = STATE(33), [anon_sym_DQUOTE] = ACTIONS(7), @@ -7183,193 +7154,298 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_question_mark_identifier] = ACTIONS(41), [sym_pointer_identifier] = ACTIONS(43), [sym_macro_identifier] = ACTIONS(45), - [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(97), [aux_sym__dec_number_token1] = ACTIONS(49), [aux_sym__dec_number_token2] = ACTIONS(51), [sym__comment] = ACTIONS(3), [sym_cmd_identifier] = ACTIONS(53), [sym__help_command] = ACTIONS(55), }, + [21] = { + [sym__commands_singleline] = STATE(484), + [sym__command] = STATE(426), + [sym_legacy_quoted_command] = STATE(265), + [sym__simple_command] = STATE(265), + [sym__tmp_command] = STATE(265), + [sym__iter_command] = STATE(265), + [sym__pipe_command] = STATE(265), + [sym_grep_command] = STATE(265), + [sym_html_disable_command] = STATE(265), + [sym_html_enable_command] = STATE(265), + [sym_pipe_command] = STATE(265), + [sym_iter_file_lines_command] = STATE(265), + [sym_iter_offsets_command] = STATE(265), + [sym_iter_offsetssizes_command] = STATE(265), + [sym_iter_hit_command] = STATE(265), + [sym_iter_interpret_command] = STATE(265), + [sym_iter_interpret_offsetssizes_command] = STATE(265), + [sym_iter_comment_command] = STATE(265), + [sym_iter_dbta_command] = STATE(265), + [sym_iter_dbtb_command] = STATE(265), + [sym_iter_dbts_command] = STATE(265), + [sym_iter_threads_command] = STATE(265), + [sym_iter_bbs_command] = STATE(265), + [sym_iter_instrs_command] = STATE(265), + [sym_iter_import_command] = STATE(265), + [sym_iter_sections_command] = STATE(265), + [sym_iter_segments_command] = STATE(265), + [sym_iter_symbol_command] = STATE(265), + [sym_iter_string_command] = STATE(265), + [sym_iter_flags_command] = STATE(265), + [sym_iter_function_command] = STATE(265), + [sym_iter_iomap_command] = STATE(265), + [sym_iter_dbgmap_command] = STATE(265), + [sym_iter_register_command] = STATE(265), + [sym_iter_step_command] = STATE(265), + [sym_tmp_seek_command] = STATE(265), + [sym_tmp_blksz_command] = STATE(265), + [sym_tmp_fromto_command] = STATE(265), + [sym_tmp_arch_command] = STATE(265), + [sym_tmp_bits_command] = STATE(265), + [sym_tmp_nthi_command] = STATE(265), + [sym_tmp_eval_command] = STATE(265), + [sym_tmp_fs_command] = STATE(265), + [sym_tmp_reli_command] = STATE(265), + [sym_tmp_kuery_command] = STATE(265), + [sym_tmp_fd_command] = STATE(265), + [sym_tmp_reg_command] = STATE(265), + [sym_tmp_file_command] = STATE(265), + [sym_tmp_string_command] = STATE(265), + [sym_tmp_value_command] = STATE(265), + [sym_tmp_hex_command] = STATE(265), + [sym_number_command] = STATE(265), + [sym_help_command] = STATE(265), + [sym_arged_command] = STATE(265), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(281), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(265), + [sym_Cf_cmd] = STATE(265), + [sym_pf_new_cmd] = STATE(265), + [sym_pf_dot_cmd] = STATE(265), + [sym_pf_cmd] = STATE(265), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(91), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(265), + [sym_redirect_command] = STATE(426), + [sym__dec_number] = STATE(5), + [aux_sym__commands_singleline_repeat1] = STATE(35), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_0] = ACTIONS(9), + [aux_sym_number_command_token1] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(65), + [aux_sym__interpret_command_token1] = ACTIONS(67), + [aux_sym__interpret_command_token3] = ACTIONS(69), + [anon_sym_DOT_BANG] = ACTIONS(19), + [anon_sym_DOT_LPAREN] = ACTIONS(21), + [anon_sym_DOT_SLASH] = ACTIONS(23), + [anon_sym_pfo] = ACTIONS(71), + [anon_sym_Cf] = ACTIONS(73), + [sym_pf_dot_cmd_identifier] = ACTIONS(75), + [sym_pf_dot_full_cmd_identifier] = ACTIONS(77), + [aux_sym_pf_cmd_token1] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(35), + [anon_sym_env] = ACTIONS(35), + [anon_sym_DOT_DOT_DOT] = ACTIONS(37), + [sym_system_identifier] = ACTIONS(81), + [sym_question_mark_identifier] = ACTIONS(83), + [sym_pointer_identifier] = ACTIONS(43), + [sym_macro_identifier] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(99), + [aux_sym__dec_number_token1] = ACTIONS(49), + [aux_sym__dec_number_token2] = ACTIONS(51), + [sym__comment] = ACTIONS(3), + [sym_cmd_identifier] = ACTIONS(87), + [sym__help_command] = ACTIONS(89), + }, [22] = { - [sym__commands_singleline] = STATE(463), - [sym__command] = STATE(424), - [sym_legacy_quoted_command] = STATE(256), - [sym__simple_command] = STATE(256), - [sym__tmp_command] = STATE(256), - [sym__iter_command] = STATE(256), - [sym__pipe_command] = STATE(256), - [sym_grep_command] = STATE(256), - [sym_html_disable_command] = STATE(256), - [sym_html_enable_command] = STATE(256), - [sym_pipe_command] = STATE(256), - [sym_iter_file_lines_command] = STATE(256), - [sym_iter_offsets_command] = STATE(256), - [sym_iter_offsetssizes_command] = STATE(256), - [sym_iter_hit_command] = STATE(256), - [sym_iter_interpret_command] = STATE(256), - [sym_iter_interpret_offsetssizes_command] = STATE(256), - [sym_iter_comment_command] = STATE(256), - [sym_iter_dbta_command] = STATE(256), - [sym_iter_dbtb_command] = STATE(256), - [sym_iter_dbts_command] = STATE(256), - [sym_iter_threads_command] = STATE(256), - [sym_iter_bbs_command] = STATE(256), - [sym_iter_instrs_command] = STATE(256), - [sym_iter_import_command] = STATE(256), - [sym_iter_sections_command] = STATE(256), - [sym_iter_segments_command] = STATE(256), - [sym_iter_symbol_command] = STATE(256), - [sym_iter_string_command] = STATE(256), - [sym_iter_flags_command] = STATE(256), - [sym_iter_function_command] = STATE(256), - [sym_iter_iomap_command] = STATE(256), - [sym_iter_dbgmap_command] = STATE(256), - [sym_iter_register_command] = STATE(256), - [sym_iter_step_command] = STATE(256), - [sym_tmp_seek_command] = STATE(256), - [sym_tmp_blksz_command] = STATE(256), - [sym_tmp_fromto_command] = STATE(256), - [sym_tmp_arch_command] = STATE(256), - [sym_tmp_bits_command] = STATE(256), - [sym_tmp_nthi_command] = STATE(256), - [sym_tmp_eval_command] = STATE(256), - [sym_tmp_fs_command] = STATE(256), - [sym_tmp_reli_command] = STATE(256), - [sym_tmp_kuery_command] = STATE(256), - [sym_tmp_fd_command] = STATE(256), - [sym_tmp_reg_command] = STATE(256), - [sym_tmp_file_command] = STATE(256), - [sym_tmp_string_command] = STATE(256), - [sym_tmp_value_command] = STATE(256), - [sym_tmp_hex_command] = STATE(256), - [sym_number_command] = STATE(256), - [sym_help_command] = STATE(256), - [sym_arged_command] = STATE(256), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), + [sym__commands_singleline] = STATE(496), + [sym__command] = STATE(426), + [sym_legacy_quoted_command] = STATE(265), + [sym__simple_command] = STATE(265), + [sym__tmp_command] = STATE(265), + [sym__iter_command] = STATE(265), + [sym__pipe_command] = STATE(265), + [sym_grep_command] = STATE(265), + [sym_html_disable_command] = STATE(265), + [sym_html_enable_command] = STATE(265), + [sym_pipe_command] = STATE(265), + [sym_iter_file_lines_command] = STATE(265), + [sym_iter_offsets_command] = STATE(265), + [sym_iter_offsetssizes_command] = STATE(265), + [sym_iter_hit_command] = STATE(265), + [sym_iter_interpret_command] = STATE(265), + [sym_iter_interpret_offsetssizes_command] = STATE(265), + [sym_iter_comment_command] = STATE(265), + [sym_iter_dbta_command] = STATE(265), + [sym_iter_dbtb_command] = STATE(265), + [sym_iter_dbts_command] = STATE(265), + [sym_iter_threads_command] = STATE(265), + [sym_iter_bbs_command] = STATE(265), + [sym_iter_instrs_command] = STATE(265), + [sym_iter_import_command] = STATE(265), + [sym_iter_sections_command] = STATE(265), + [sym_iter_segments_command] = STATE(265), + [sym_iter_symbol_command] = STATE(265), + [sym_iter_string_command] = STATE(265), + [sym_iter_flags_command] = STATE(265), + [sym_iter_function_command] = STATE(265), + [sym_iter_iomap_command] = STATE(265), + [sym_iter_dbgmap_command] = STATE(265), + [sym_iter_register_command] = STATE(265), + [sym_iter_step_command] = STATE(265), + [sym_tmp_seek_command] = STATE(265), + [sym_tmp_blksz_command] = STATE(265), + [sym_tmp_fromto_command] = STATE(265), + [sym_tmp_arch_command] = STATE(265), + [sym_tmp_bits_command] = STATE(265), + [sym_tmp_nthi_command] = STATE(265), + [sym_tmp_eval_command] = STATE(265), + [sym_tmp_fs_command] = STATE(265), + [sym_tmp_reli_command] = STATE(265), + [sym_tmp_kuery_command] = STATE(265), + [sym_tmp_fd_command] = STATE(265), + [sym_tmp_reg_command] = STATE(265), + [sym_tmp_file_command] = STATE(265), + [sym_tmp_string_command] = STATE(265), + [sym_tmp_value_command] = STATE(265), + [sym_tmp_hex_command] = STATE(265), + [sym_number_command] = STATE(265), + [sym_help_command] = STATE(265), + [sym_arged_command] = STATE(265), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(256), - [sym_Cf_cmd] = STATE(256), - [sym_pf_new_cmd] = STATE(256), - [sym_pf_dot_cmd] = STATE(256), - [sym_pf_cmd] = STATE(256), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(256), - [sym_redirect_command] = STATE(424), - [sym__dec_number] = STATE(2), - [aux_sym__commands_singleline_repeat1] = STATE(33), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(265), + [sym_Cf_cmd] = STATE(265), + [sym_pf_new_cmd] = STATE(265), + [sym_pf_dot_cmd] = STATE(265), + [sym_pf_cmd] = STATE(265), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(91), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(265), + [sym_redirect_command] = STATE(426), + [sym__dec_number] = STATE(5), + [aux_sym__commands_singleline_repeat1] = STATE(35), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_0] = ACTIONS(9), [aux_sym_number_command_token1] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym__interpret_command_token1] = ACTIONS(15), - [aux_sym__interpret_command_token3] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(65), + [aux_sym__interpret_command_token1] = ACTIONS(67), + [aux_sym__interpret_command_token3] = ACTIONS(69), [anon_sym_DOT_BANG] = ACTIONS(19), [anon_sym_DOT_LPAREN] = ACTIONS(21), [anon_sym_DOT_SLASH] = ACTIONS(23), - [anon_sym_pfo] = ACTIONS(25), - [anon_sym_Cf] = ACTIONS(27), - [sym_pf_dot_cmd_identifier] = ACTIONS(29), - [sym_pf_dot_full_cmd_identifier] = ACTIONS(31), - [aux_sym_pf_cmd_token1] = ACTIONS(33), + [anon_sym_pfo] = ACTIONS(71), + [anon_sym_Cf] = ACTIONS(73), + [sym_pf_dot_cmd_identifier] = ACTIONS(75), + [sym_pf_dot_full_cmd_identifier] = ACTIONS(77), + [aux_sym_pf_cmd_token1] = ACTIONS(79), [anon_sym_PERCENT] = ACTIONS(35), [anon_sym_env] = ACTIONS(35), [anon_sym_DOT_DOT_DOT] = ACTIONS(37), - [sym_system_identifier] = ACTIONS(39), - [sym_question_mark_identifier] = ACTIONS(41), + [sym_system_identifier] = ACTIONS(81), + [sym_question_mark_identifier] = ACTIONS(83), [sym_pointer_identifier] = ACTIONS(43), - [sym_macro_identifier] = ACTIONS(45), + [sym_macro_identifier] = ACTIONS(85), [anon_sym_SEMI] = ACTIONS(99), [aux_sym__dec_number_token1] = ACTIONS(49), [aux_sym__dec_number_token2] = ACTIONS(51), [sym__comment] = ACTIONS(3), - [sym_cmd_identifier] = ACTIONS(53), - [sym__help_command] = ACTIONS(55), + [sym_cmd_identifier] = ACTIONS(87), + [sym__help_command] = ACTIONS(89), }, [23] = { - [sym__commands_singleline] = STATE(459), - [sym__command] = STATE(424), - [sym_legacy_quoted_command] = STATE(256), - [sym__simple_command] = STATE(256), - [sym__tmp_command] = STATE(256), - [sym__iter_command] = STATE(256), - [sym__pipe_command] = STATE(256), - [sym_grep_command] = STATE(256), - [sym_html_disable_command] = STATE(256), - [sym_html_enable_command] = STATE(256), - [sym_pipe_command] = STATE(256), - [sym_iter_file_lines_command] = STATE(256), - [sym_iter_offsets_command] = STATE(256), - [sym_iter_offsetssizes_command] = STATE(256), - [sym_iter_hit_command] = STATE(256), - [sym_iter_interpret_command] = STATE(256), - [sym_iter_interpret_offsetssizes_command] = STATE(256), - [sym_iter_comment_command] = STATE(256), - [sym_iter_dbta_command] = STATE(256), - [sym_iter_dbtb_command] = STATE(256), - [sym_iter_dbts_command] = STATE(256), - [sym_iter_threads_command] = STATE(256), - [sym_iter_bbs_command] = STATE(256), - [sym_iter_instrs_command] = STATE(256), - [sym_iter_import_command] = STATE(256), - [sym_iter_sections_command] = STATE(256), - [sym_iter_segments_command] = STATE(256), - [sym_iter_symbol_command] = STATE(256), - [sym_iter_string_command] = STATE(256), - [sym_iter_flags_command] = STATE(256), - [sym_iter_function_command] = STATE(256), - [sym_iter_iomap_command] = STATE(256), - [sym_iter_dbgmap_command] = STATE(256), - [sym_iter_register_command] = STATE(256), - [sym_iter_step_command] = STATE(256), - [sym_tmp_seek_command] = STATE(256), - [sym_tmp_blksz_command] = STATE(256), - [sym_tmp_fromto_command] = STATE(256), - [sym_tmp_arch_command] = STATE(256), - [sym_tmp_bits_command] = STATE(256), - [sym_tmp_nthi_command] = STATE(256), - [sym_tmp_eval_command] = STATE(256), - [sym_tmp_fs_command] = STATE(256), - [sym_tmp_reli_command] = STATE(256), - [sym_tmp_kuery_command] = STATE(256), - [sym_tmp_fd_command] = STATE(256), - [sym_tmp_reg_command] = STATE(256), - [sym_tmp_file_command] = STATE(256), - [sym_tmp_string_command] = STATE(256), - [sym_tmp_value_command] = STATE(256), - [sym_tmp_hex_command] = STATE(256), - [sym_number_command] = STATE(256), - [sym_help_command] = STATE(256), - [sym_arged_command] = STATE(256), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(256), - [sym_Cf_cmd] = STATE(256), - [sym_pf_new_cmd] = STATE(256), - [sym_pf_dot_cmd] = STATE(256), - [sym_pf_cmd] = STATE(256), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(256), - [sym_redirect_command] = STATE(424), + [sym__commands_singleline] = STATE(482), + [sym__command] = STATE(441), + [sym_legacy_quoted_command] = STATE(266), + [sym__simple_command] = STATE(266), + [sym__tmp_command] = STATE(266), + [sym__iter_command] = STATE(266), + [sym__pipe_command] = STATE(266), + [sym_grep_command] = STATE(266), + [sym_html_disable_command] = STATE(266), + [sym_html_enable_command] = STATE(266), + [sym_pipe_command] = STATE(266), + [sym_iter_file_lines_command] = STATE(266), + [sym_iter_offsets_command] = STATE(266), + [sym_iter_offsetssizes_command] = STATE(266), + [sym_iter_hit_command] = STATE(266), + [sym_iter_interpret_command] = STATE(266), + [sym_iter_interpret_offsetssizes_command] = STATE(266), + [sym_iter_comment_command] = STATE(266), + [sym_iter_dbta_command] = STATE(266), + [sym_iter_dbtb_command] = STATE(266), + [sym_iter_dbts_command] = STATE(266), + [sym_iter_threads_command] = STATE(266), + [sym_iter_bbs_command] = STATE(266), + [sym_iter_instrs_command] = STATE(266), + [sym_iter_import_command] = STATE(266), + [sym_iter_sections_command] = STATE(266), + [sym_iter_segments_command] = STATE(266), + [sym_iter_symbol_command] = STATE(266), + [sym_iter_string_command] = STATE(266), + [sym_iter_flags_command] = STATE(266), + [sym_iter_function_command] = STATE(266), + [sym_iter_iomap_command] = STATE(266), + [sym_iter_dbgmap_command] = STATE(266), + [sym_iter_register_command] = STATE(266), + [sym_iter_step_command] = STATE(266), + [sym_tmp_seek_command] = STATE(266), + [sym_tmp_blksz_command] = STATE(266), + [sym_tmp_fromto_command] = STATE(266), + [sym_tmp_arch_command] = STATE(266), + [sym_tmp_bits_command] = STATE(266), + [sym_tmp_nthi_command] = STATE(266), + [sym_tmp_eval_command] = STATE(266), + [sym_tmp_fs_command] = STATE(266), + [sym_tmp_reli_command] = STATE(266), + [sym_tmp_kuery_command] = STATE(266), + [sym_tmp_fd_command] = STATE(266), + [sym_tmp_reg_command] = STATE(266), + [sym_tmp_file_command] = STATE(266), + [sym_tmp_string_command] = STATE(266), + [sym_tmp_value_command] = STATE(266), + [sym_tmp_hex_command] = STATE(266), + [sym_number_command] = STATE(266), + [sym_help_command] = STATE(266), + [sym_arged_command] = STATE(266), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(266), + [sym_Cf_cmd] = STATE(266), + [sym_pf_new_cmd] = STATE(266), + [sym_pf_dot_cmd] = STATE(266), + [sym_pf_cmd] = STATE(266), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(266), + [sym_redirect_command] = STATE(441), [sym__dec_number] = STATE(2), [aux_sym__commands_singleline_repeat1] = STATE(33), [anon_sym_DQUOTE] = ACTIONS(7), @@ -7393,7 +7469,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_question_mark_identifier] = ACTIONS(41), [sym_pointer_identifier] = ACTIONS(43), [sym_macro_identifier] = ACTIONS(45), - [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(97), [aux_sym__dec_number_token1] = ACTIONS(49), [aux_sym__dec_number_token2] = ACTIONS(51), [sym__comment] = ACTIONS(3), @@ -7401,82 +7477,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__help_command] = ACTIONS(55), }, [24] = { - [sym__commands_singleline] = STATE(466), - [sym__command] = STATE(423), - [sym_legacy_quoted_command] = STATE(255), - [sym__simple_command] = STATE(255), - [sym__tmp_command] = STATE(255), - [sym__iter_command] = STATE(255), - [sym__pipe_command] = STATE(255), - [sym_grep_command] = STATE(255), - [sym_html_disable_command] = STATE(255), - [sym_html_enable_command] = STATE(255), - [sym_pipe_command] = STATE(255), - [sym_iter_file_lines_command] = STATE(255), - [sym_iter_offsets_command] = STATE(255), - [sym_iter_offsetssizes_command] = STATE(255), - [sym_iter_hit_command] = STATE(255), - [sym_iter_interpret_command] = STATE(255), - [sym_iter_interpret_offsetssizes_command] = STATE(255), - [sym_iter_comment_command] = STATE(255), - [sym_iter_dbta_command] = STATE(255), - [sym_iter_dbtb_command] = STATE(255), - [sym_iter_dbts_command] = STATE(255), - [sym_iter_threads_command] = STATE(255), - [sym_iter_bbs_command] = STATE(255), - [sym_iter_instrs_command] = STATE(255), - [sym_iter_import_command] = STATE(255), - [sym_iter_sections_command] = STATE(255), - [sym_iter_segments_command] = STATE(255), - [sym_iter_symbol_command] = STATE(255), - [sym_iter_string_command] = STATE(255), - [sym_iter_flags_command] = STATE(255), - [sym_iter_function_command] = STATE(255), - [sym_iter_iomap_command] = STATE(255), - [sym_iter_dbgmap_command] = STATE(255), - [sym_iter_register_command] = STATE(255), - [sym_iter_step_command] = STATE(255), - [sym_tmp_seek_command] = STATE(255), - [sym_tmp_blksz_command] = STATE(255), - [sym_tmp_fromto_command] = STATE(255), - [sym_tmp_arch_command] = STATE(255), - [sym_tmp_bits_command] = STATE(255), - [sym_tmp_nthi_command] = STATE(255), - [sym_tmp_eval_command] = STATE(255), - [sym_tmp_fs_command] = STATE(255), - [sym_tmp_reli_command] = STATE(255), - [sym_tmp_kuery_command] = STATE(255), - [sym_tmp_fd_command] = STATE(255), - [sym_tmp_reg_command] = STATE(255), - [sym_tmp_file_command] = STATE(255), - [sym_tmp_string_command] = STATE(255), - [sym_tmp_value_command] = STATE(255), - [sym_tmp_hex_command] = STATE(255), - [sym_number_command] = STATE(255), - [sym_help_command] = STATE(255), - [sym_arged_command] = STATE(255), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(274), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(255), - [sym_Cf_cmd] = STATE(255), - [sym_pf_new_cmd] = STATE(255), - [sym_pf_dot_cmd] = STATE(255), - [sym_pf_cmd] = STATE(255), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(90), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(255), - [sym_redirect_command] = STATE(423), + [sym__commands_singleline] = STATE(478), + [sym__command] = STATE(426), + [sym_legacy_quoted_command] = STATE(265), + [sym__simple_command] = STATE(265), + [sym__tmp_command] = STATE(265), + [sym__iter_command] = STATE(265), + [sym__pipe_command] = STATE(265), + [sym_grep_command] = STATE(265), + [sym_html_disable_command] = STATE(265), + [sym_html_enable_command] = STATE(265), + [sym_pipe_command] = STATE(265), + [sym_iter_file_lines_command] = STATE(265), + [sym_iter_offsets_command] = STATE(265), + [sym_iter_offsetssizes_command] = STATE(265), + [sym_iter_hit_command] = STATE(265), + [sym_iter_interpret_command] = STATE(265), + [sym_iter_interpret_offsetssizes_command] = STATE(265), + [sym_iter_comment_command] = STATE(265), + [sym_iter_dbta_command] = STATE(265), + [sym_iter_dbtb_command] = STATE(265), + [sym_iter_dbts_command] = STATE(265), + [sym_iter_threads_command] = STATE(265), + [sym_iter_bbs_command] = STATE(265), + [sym_iter_instrs_command] = STATE(265), + [sym_iter_import_command] = STATE(265), + [sym_iter_sections_command] = STATE(265), + [sym_iter_segments_command] = STATE(265), + [sym_iter_symbol_command] = STATE(265), + [sym_iter_string_command] = STATE(265), + [sym_iter_flags_command] = STATE(265), + [sym_iter_function_command] = STATE(265), + [sym_iter_iomap_command] = STATE(265), + [sym_iter_dbgmap_command] = STATE(265), + [sym_iter_register_command] = STATE(265), + [sym_iter_step_command] = STATE(265), + [sym_tmp_seek_command] = STATE(265), + [sym_tmp_blksz_command] = STATE(265), + [sym_tmp_fromto_command] = STATE(265), + [sym_tmp_arch_command] = STATE(265), + [sym_tmp_bits_command] = STATE(265), + [sym_tmp_nthi_command] = STATE(265), + [sym_tmp_eval_command] = STATE(265), + [sym_tmp_fs_command] = STATE(265), + [sym_tmp_reli_command] = STATE(265), + [sym_tmp_kuery_command] = STATE(265), + [sym_tmp_fd_command] = STATE(265), + [sym_tmp_reg_command] = STATE(265), + [sym_tmp_file_command] = STATE(265), + [sym_tmp_string_command] = STATE(265), + [sym_tmp_value_command] = STATE(265), + [sym_tmp_hex_command] = STATE(265), + [sym_number_command] = STATE(265), + [sym_help_command] = STATE(265), + [sym_arged_command] = STATE(265), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(281), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(265), + [sym_Cf_cmd] = STATE(265), + [sym_pf_new_cmd] = STATE(265), + [sym_pf_dot_cmd] = STATE(265), + [sym_pf_cmd] = STATE(265), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(91), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(265), + [sym_redirect_command] = STATE(426), [sym__dec_number] = STATE(5), - [aux_sym__commands_singleline_repeat1] = STATE(34), + [aux_sym__commands_singleline_repeat1] = STATE(35), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_0] = ACTIONS(9), [aux_sym_number_command_token1] = ACTIONS(11), @@ -7498,7 +7574,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_question_mark_identifier] = ACTIONS(83), [sym_pointer_identifier] = ACTIONS(43), [sym_macro_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), [aux_sym__dec_number_token1] = ACTIONS(49), [aux_sym__dec_number_token2] = ACTIONS(51), [sym__comment] = ACTIONS(3), @@ -7506,187 +7582,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__help_command] = ACTIONS(89), }, [25] = { - [sym__commands_singleline] = STATE(467), - [sym__command] = STATE(424), - [sym_legacy_quoted_command] = STATE(256), - [sym__simple_command] = STATE(256), - [sym__tmp_command] = STATE(256), - [sym__iter_command] = STATE(256), - [sym__pipe_command] = STATE(256), - [sym_grep_command] = STATE(256), - [sym_html_disable_command] = STATE(256), - [sym_html_enable_command] = STATE(256), - [sym_pipe_command] = STATE(256), - [sym_iter_file_lines_command] = STATE(256), - [sym_iter_offsets_command] = STATE(256), - [sym_iter_offsetssizes_command] = STATE(256), - [sym_iter_hit_command] = STATE(256), - [sym_iter_interpret_command] = STATE(256), - [sym_iter_interpret_offsetssizes_command] = STATE(256), - [sym_iter_comment_command] = STATE(256), - [sym_iter_dbta_command] = STATE(256), - [sym_iter_dbtb_command] = STATE(256), - [sym_iter_dbts_command] = STATE(256), - [sym_iter_threads_command] = STATE(256), - [sym_iter_bbs_command] = STATE(256), - [sym_iter_instrs_command] = STATE(256), - [sym_iter_import_command] = STATE(256), - [sym_iter_sections_command] = STATE(256), - [sym_iter_segments_command] = STATE(256), - [sym_iter_symbol_command] = STATE(256), - [sym_iter_string_command] = STATE(256), - [sym_iter_flags_command] = STATE(256), - [sym_iter_function_command] = STATE(256), - [sym_iter_iomap_command] = STATE(256), - [sym_iter_dbgmap_command] = STATE(256), - [sym_iter_register_command] = STATE(256), - [sym_iter_step_command] = STATE(256), - [sym_tmp_seek_command] = STATE(256), - [sym_tmp_blksz_command] = STATE(256), - [sym_tmp_fromto_command] = STATE(256), - [sym_tmp_arch_command] = STATE(256), - [sym_tmp_bits_command] = STATE(256), - [sym_tmp_nthi_command] = STATE(256), - [sym_tmp_eval_command] = STATE(256), - [sym_tmp_fs_command] = STATE(256), - [sym_tmp_reli_command] = STATE(256), - [sym_tmp_kuery_command] = STATE(256), - [sym_tmp_fd_command] = STATE(256), - [sym_tmp_reg_command] = STATE(256), - [sym_tmp_file_command] = STATE(256), - [sym_tmp_string_command] = STATE(256), - [sym_tmp_value_command] = STATE(256), - [sym_tmp_hex_command] = STATE(256), - [sym_number_command] = STATE(256), - [sym_help_command] = STATE(256), - [sym_arged_command] = STATE(256), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), + [sym__commands_singleline] = STATE(485), + [sym__command] = STATE(426), + [sym_legacy_quoted_command] = STATE(265), + [sym__simple_command] = STATE(265), + [sym__tmp_command] = STATE(265), + [sym__iter_command] = STATE(265), + [sym__pipe_command] = STATE(265), + [sym_grep_command] = STATE(265), + [sym_html_disable_command] = STATE(265), + [sym_html_enable_command] = STATE(265), + [sym_pipe_command] = STATE(265), + [sym_iter_file_lines_command] = STATE(265), + [sym_iter_offsets_command] = STATE(265), + [sym_iter_offsetssizes_command] = STATE(265), + [sym_iter_hit_command] = STATE(265), + [sym_iter_interpret_command] = STATE(265), + [sym_iter_interpret_offsetssizes_command] = STATE(265), + [sym_iter_comment_command] = STATE(265), + [sym_iter_dbta_command] = STATE(265), + [sym_iter_dbtb_command] = STATE(265), + [sym_iter_dbts_command] = STATE(265), + [sym_iter_threads_command] = STATE(265), + [sym_iter_bbs_command] = STATE(265), + [sym_iter_instrs_command] = STATE(265), + [sym_iter_import_command] = STATE(265), + [sym_iter_sections_command] = STATE(265), + [sym_iter_segments_command] = STATE(265), + [sym_iter_symbol_command] = STATE(265), + [sym_iter_string_command] = STATE(265), + [sym_iter_flags_command] = STATE(265), + [sym_iter_function_command] = STATE(265), + [sym_iter_iomap_command] = STATE(265), + [sym_iter_dbgmap_command] = STATE(265), + [sym_iter_register_command] = STATE(265), + [sym_iter_step_command] = STATE(265), + [sym_tmp_seek_command] = STATE(265), + [sym_tmp_blksz_command] = STATE(265), + [sym_tmp_fromto_command] = STATE(265), + [sym_tmp_arch_command] = STATE(265), + [sym_tmp_bits_command] = STATE(265), + [sym_tmp_nthi_command] = STATE(265), + [sym_tmp_eval_command] = STATE(265), + [sym_tmp_fs_command] = STATE(265), + [sym_tmp_reli_command] = STATE(265), + [sym_tmp_kuery_command] = STATE(265), + [sym_tmp_fd_command] = STATE(265), + [sym_tmp_reg_command] = STATE(265), + [sym_tmp_file_command] = STATE(265), + [sym_tmp_string_command] = STATE(265), + [sym_tmp_value_command] = STATE(265), + [sym_tmp_hex_command] = STATE(265), + [sym_number_command] = STATE(265), + [sym_help_command] = STATE(265), + [sym_arged_command] = STATE(265), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(256), - [sym_Cf_cmd] = STATE(256), - [sym_pf_new_cmd] = STATE(256), - [sym_pf_dot_cmd] = STATE(256), - [sym_pf_cmd] = STATE(256), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(256), - [sym_redirect_command] = STATE(424), - [sym__dec_number] = STATE(2), - [aux_sym__commands_singleline_repeat1] = STATE(33), - [anon_sym_DQUOTE] = ACTIONS(7), - [anon_sym_0] = ACTIONS(9), - [aux_sym_number_command_token1] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym__interpret_command_token1] = ACTIONS(15), - [aux_sym__interpret_command_token3] = ACTIONS(17), - [anon_sym_DOT_BANG] = ACTIONS(19), - [anon_sym_DOT_LPAREN] = ACTIONS(21), - [anon_sym_DOT_SLASH] = ACTIONS(23), - [anon_sym_pfo] = ACTIONS(25), - [anon_sym_Cf] = ACTIONS(27), - [sym_pf_dot_cmd_identifier] = ACTIONS(29), - [sym_pf_dot_full_cmd_identifier] = ACTIONS(31), - [aux_sym_pf_cmd_token1] = ACTIONS(33), - [anon_sym_PERCENT] = ACTIONS(35), - [anon_sym_env] = ACTIONS(35), - [anon_sym_DOT_DOT_DOT] = ACTIONS(37), - [sym_system_identifier] = ACTIONS(39), - [sym_question_mark_identifier] = ACTIONS(41), - [sym_pointer_identifier] = ACTIONS(43), - [sym_macro_identifier] = ACTIONS(45), - [anon_sym_SEMI] = ACTIONS(99), - [aux_sym__dec_number_token1] = ACTIONS(49), - [aux_sym__dec_number_token2] = ACTIONS(51), - [sym__comment] = ACTIONS(3), - [sym_cmd_identifier] = ACTIONS(53), - [sym__help_command] = ACTIONS(55), - }, - [26] = { - [sym__commands_singleline] = STATE(471), - [sym__command] = STATE(423), - [sym_legacy_quoted_command] = STATE(255), - [sym__simple_command] = STATE(255), - [sym__tmp_command] = STATE(255), - [sym__iter_command] = STATE(255), - [sym__pipe_command] = STATE(255), - [sym_grep_command] = STATE(255), - [sym_html_disable_command] = STATE(255), - [sym_html_enable_command] = STATE(255), - [sym_pipe_command] = STATE(255), - [sym_iter_file_lines_command] = STATE(255), - [sym_iter_offsets_command] = STATE(255), - [sym_iter_offsetssizes_command] = STATE(255), - [sym_iter_hit_command] = STATE(255), - [sym_iter_interpret_command] = STATE(255), - [sym_iter_interpret_offsetssizes_command] = STATE(255), - [sym_iter_comment_command] = STATE(255), - [sym_iter_dbta_command] = STATE(255), - [sym_iter_dbtb_command] = STATE(255), - [sym_iter_dbts_command] = STATE(255), - [sym_iter_threads_command] = STATE(255), - [sym_iter_bbs_command] = STATE(255), - [sym_iter_instrs_command] = STATE(255), - [sym_iter_import_command] = STATE(255), - [sym_iter_sections_command] = STATE(255), - [sym_iter_segments_command] = STATE(255), - [sym_iter_symbol_command] = STATE(255), - [sym_iter_string_command] = STATE(255), - [sym_iter_flags_command] = STATE(255), - [sym_iter_function_command] = STATE(255), - [sym_iter_iomap_command] = STATE(255), - [sym_iter_dbgmap_command] = STATE(255), - [sym_iter_register_command] = STATE(255), - [sym_iter_step_command] = STATE(255), - [sym_tmp_seek_command] = STATE(255), - [sym_tmp_blksz_command] = STATE(255), - [sym_tmp_fromto_command] = STATE(255), - [sym_tmp_arch_command] = STATE(255), - [sym_tmp_bits_command] = STATE(255), - [sym_tmp_nthi_command] = STATE(255), - [sym_tmp_eval_command] = STATE(255), - [sym_tmp_fs_command] = STATE(255), - [sym_tmp_reli_command] = STATE(255), - [sym_tmp_kuery_command] = STATE(255), - [sym_tmp_fd_command] = STATE(255), - [sym_tmp_reg_command] = STATE(255), - [sym_tmp_file_command] = STATE(255), - [sym_tmp_string_command] = STATE(255), - [sym_tmp_value_command] = STATE(255), - [sym_tmp_hex_command] = STATE(255), - [sym_number_command] = STATE(255), - [sym_help_command] = STATE(255), - [sym_arged_command] = STATE(255), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(274), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(255), - [sym_Cf_cmd] = STATE(255), - [sym_pf_new_cmd] = STATE(255), - [sym_pf_dot_cmd] = STATE(255), - [sym_pf_cmd] = STATE(255), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(90), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(255), - [sym_redirect_command] = STATE(423), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(265), + [sym_Cf_cmd] = STATE(265), + [sym_pf_new_cmd] = STATE(265), + [sym_pf_dot_cmd] = STATE(265), + [sym_pf_cmd] = STATE(265), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(91), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(265), + [sym_redirect_command] = STATE(426), [sym__dec_number] = STATE(5), - [aux_sym__commands_singleline_repeat1] = STATE(34), + [aux_sym__commands_singleline_repeat1] = STATE(35), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_0] = ACTIONS(9), [aux_sym_number_command_token1] = ACTIONS(11), @@ -7708,88 +7679,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_question_mark_identifier] = ACTIONS(83), [sym_pointer_identifier] = ACTIONS(43), [sym_macro_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), [aux_sym__dec_number_token1] = ACTIONS(49), [aux_sym__dec_number_token2] = ACTIONS(51), [sym__comment] = ACTIONS(3), [sym_cmd_identifier] = ACTIONS(87), [sym__help_command] = ACTIONS(89), }, - [27] = { - [sym__commands_singleline] = STATE(472), - [sym__command] = STATE(424), - [sym_legacy_quoted_command] = STATE(256), - [sym__simple_command] = STATE(256), - [sym__tmp_command] = STATE(256), - [sym__iter_command] = STATE(256), - [sym__pipe_command] = STATE(256), - [sym_grep_command] = STATE(256), - [sym_html_disable_command] = STATE(256), - [sym_html_enable_command] = STATE(256), - [sym_pipe_command] = STATE(256), - [sym_iter_file_lines_command] = STATE(256), - [sym_iter_offsets_command] = STATE(256), - [sym_iter_offsetssizes_command] = STATE(256), - [sym_iter_hit_command] = STATE(256), - [sym_iter_interpret_command] = STATE(256), - [sym_iter_interpret_offsetssizes_command] = STATE(256), - [sym_iter_comment_command] = STATE(256), - [sym_iter_dbta_command] = STATE(256), - [sym_iter_dbtb_command] = STATE(256), - [sym_iter_dbts_command] = STATE(256), - [sym_iter_threads_command] = STATE(256), - [sym_iter_bbs_command] = STATE(256), - [sym_iter_instrs_command] = STATE(256), - [sym_iter_import_command] = STATE(256), - [sym_iter_sections_command] = STATE(256), - [sym_iter_segments_command] = STATE(256), - [sym_iter_symbol_command] = STATE(256), - [sym_iter_string_command] = STATE(256), - [sym_iter_flags_command] = STATE(256), - [sym_iter_function_command] = STATE(256), - [sym_iter_iomap_command] = STATE(256), - [sym_iter_dbgmap_command] = STATE(256), - [sym_iter_register_command] = STATE(256), - [sym_iter_step_command] = STATE(256), - [sym_tmp_seek_command] = STATE(256), - [sym_tmp_blksz_command] = STATE(256), - [sym_tmp_fromto_command] = STATE(256), - [sym_tmp_arch_command] = STATE(256), - [sym_tmp_bits_command] = STATE(256), - [sym_tmp_nthi_command] = STATE(256), - [sym_tmp_eval_command] = STATE(256), - [sym_tmp_fs_command] = STATE(256), - [sym_tmp_reli_command] = STATE(256), - [sym_tmp_kuery_command] = STATE(256), - [sym_tmp_fd_command] = STATE(256), - [sym_tmp_reg_command] = STATE(256), - [sym_tmp_file_command] = STATE(256), - [sym_tmp_string_command] = STATE(256), - [sym_tmp_value_command] = STATE(256), - [sym_tmp_hex_command] = STATE(256), - [sym_number_command] = STATE(256), - [sym_help_command] = STATE(256), - [sym_arged_command] = STATE(256), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(256), - [sym_Cf_cmd] = STATE(256), - [sym_pf_new_cmd] = STATE(256), - [sym_pf_dot_cmd] = STATE(256), - [sym_pf_cmd] = STATE(256), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(256), - [sym_redirect_command] = STATE(424), + [26] = { + [sym__commands_singleline] = STATE(502), + [sym__command] = STATE(441), + [sym_legacy_quoted_command] = STATE(266), + [sym__simple_command] = STATE(266), + [sym__tmp_command] = STATE(266), + [sym__iter_command] = STATE(266), + [sym__pipe_command] = STATE(266), + [sym_grep_command] = STATE(266), + [sym_html_disable_command] = STATE(266), + [sym_html_enable_command] = STATE(266), + [sym_pipe_command] = STATE(266), + [sym_iter_file_lines_command] = STATE(266), + [sym_iter_offsets_command] = STATE(266), + [sym_iter_offsetssizes_command] = STATE(266), + [sym_iter_hit_command] = STATE(266), + [sym_iter_interpret_command] = STATE(266), + [sym_iter_interpret_offsetssizes_command] = STATE(266), + [sym_iter_comment_command] = STATE(266), + [sym_iter_dbta_command] = STATE(266), + [sym_iter_dbtb_command] = STATE(266), + [sym_iter_dbts_command] = STATE(266), + [sym_iter_threads_command] = STATE(266), + [sym_iter_bbs_command] = STATE(266), + [sym_iter_instrs_command] = STATE(266), + [sym_iter_import_command] = STATE(266), + [sym_iter_sections_command] = STATE(266), + [sym_iter_segments_command] = STATE(266), + [sym_iter_symbol_command] = STATE(266), + [sym_iter_string_command] = STATE(266), + [sym_iter_flags_command] = STATE(266), + [sym_iter_function_command] = STATE(266), + [sym_iter_iomap_command] = STATE(266), + [sym_iter_dbgmap_command] = STATE(266), + [sym_iter_register_command] = STATE(266), + [sym_iter_step_command] = STATE(266), + [sym_tmp_seek_command] = STATE(266), + [sym_tmp_blksz_command] = STATE(266), + [sym_tmp_fromto_command] = STATE(266), + [sym_tmp_arch_command] = STATE(266), + [sym_tmp_bits_command] = STATE(266), + [sym_tmp_nthi_command] = STATE(266), + [sym_tmp_eval_command] = STATE(266), + [sym_tmp_fs_command] = STATE(266), + [sym_tmp_reli_command] = STATE(266), + [sym_tmp_kuery_command] = STATE(266), + [sym_tmp_fd_command] = STATE(266), + [sym_tmp_reg_command] = STATE(266), + [sym_tmp_file_command] = STATE(266), + [sym_tmp_string_command] = STATE(266), + [sym_tmp_value_command] = STATE(266), + [sym_tmp_hex_command] = STATE(266), + [sym_number_command] = STATE(266), + [sym_help_command] = STATE(266), + [sym_arged_command] = STATE(266), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(266), + [sym_Cf_cmd] = STATE(266), + [sym_pf_new_cmd] = STATE(266), + [sym_pf_dot_cmd] = STATE(266), + [sym_pf_cmd] = STATE(266), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(266), + [sym_redirect_command] = STATE(441), [sym__dec_number] = STATE(2), [aux_sym__commands_singleline_repeat1] = STATE(33), [anon_sym_DQUOTE] = ACTIONS(7), @@ -7813,7 +7784,112 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_question_mark_identifier] = ACTIONS(41), [sym_pointer_identifier] = ACTIONS(43), [sym_macro_identifier] = ACTIONS(45), - [anon_sym_SEMI] = ACTIONS(99), + [anon_sym_SEMI] = ACTIONS(97), + [aux_sym__dec_number_token1] = ACTIONS(49), + [aux_sym__dec_number_token2] = ACTIONS(51), + [sym__comment] = ACTIONS(3), + [sym_cmd_identifier] = ACTIONS(53), + [sym__help_command] = ACTIONS(55), + }, + [27] = { + [sym__commands_singleline] = STATE(500), + [sym__command] = STATE(441), + [sym_legacy_quoted_command] = STATE(266), + [sym__simple_command] = STATE(266), + [sym__tmp_command] = STATE(266), + [sym__iter_command] = STATE(266), + [sym__pipe_command] = STATE(266), + [sym_grep_command] = STATE(266), + [sym_html_disable_command] = STATE(266), + [sym_html_enable_command] = STATE(266), + [sym_pipe_command] = STATE(266), + [sym_iter_file_lines_command] = STATE(266), + [sym_iter_offsets_command] = STATE(266), + [sym_iter_offsetssizes_command] = STATE(266), + [sym_iter_hit_command] = STATE(266), + [sym_iter_interpret_command] = STATE(266), + [sym_iter_interpret_offsetssizes_command] = STATE(266), + [sym_iter_comment_command] = STATE(266), + [sym_iter_dbta_command] = STATE(266), + [sym_iter_dbtb_command] = STATE(266), + [sym_iter_dbts_command] = STATE(266), + [sym_iter_threads_command] = STATE(266), + [sym_iter_bbs_command] = STATE(266), + [sym_iter_instrs_command] = STATE(266), + [sym_iter_import_command] = STATE(266), + [sym_iter_sections_command] = STATE(266), + [sym_iter_segments_command] = STATE(266), + [sym_iter_symbol_command] = STATE(266), + [sym_iter_string_command] = STATE(266), + [sym_iter_flags_command] = STATE(266), + [sym_iter_function_command] = STATE(266), + [sym_iter_iomap_command] = STATE(266), + [sym_iter_dbgmap_command] = STATE(266), + [sym_iter_register_command] = STATE(266), + [sym_iter_step_command] = STATE(266), + [sym_tmp_seek_command] = STATE(266), + [sym_tmp_blksz_command] = STATE(266), + [sym_tmp_fromto_command] = STATE(266), + [sym_tmp_arch_command] = STATE(266), + [sym_tmp_bits_command] = STATE(266), + [sym_tmp_nthi_command] = STATE(266), + [sym_tmp_eval_command] = STATE(266), + [sym_tmp_fs_command] = STATE(266), + [sym_tmp_reli_command] = STATE(266), + [sym_tmp_kuery_command] = STATE(266), + [sym_tmp_fd_command] = STATE(266), + [sym_tmp_reg_command] = STATE(266), + [sym_tmp_file_command] = STATE(266), + [sym_tmp_string_command] = STATE(266), + [sym_tmp_value_command] = STATE(266), + [sym_tmp_hex_command] = STATE(266), + [sym_number_command] = STATE(266), + [sym_help_command] = STATE(266), + [sym_arged_command] = STATE(266), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(266), + [sym_Cf_cmd] = STATE(266), + [sym_pf_new_cmd] = STATE(266), + [sym_pf_dot_cmd] = STATE(266), + [sym_pf_cmd] = STATE(266), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(266), + [sym_redirect_command] = STATE(441), + [sym__dec_number] = STATE(2), + [aux_sym__commands_singleline_repeat1] = STATE(33), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_0] = ACTIONS(9), + [aux_sym_number_command_token1] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym__interpret_command_token1] = ACTIONS(15), + [aux_sym__interpret_command_token3] = ACTIONS(17), + [anon_sym_DOT_BANG] = ACTIONS(19), + [anon_sym_DOT_LPAREN] = ACTIONS(21), + [anon_sym_DOT_SLASH] = ACTIONS(23), + [anon_sym_pfo] = ACTIONS(25), + [anon_sym_Cf] = ACTIONS(27), + [sym_pf_dot_cmd_identifier] = ACTIONS(29), + [sym_pf_dot_full_cmd_identifier] = ACTIONS(31), + [aux_sym_pf_cmd_token1] = ACTIONS(33), + [anon_sym_PERCENT] = ACTIONS(35), + [anon_sym_env] = ACTIONS(35), + [anon_sym_DOT_DOT_DOT] = ACTIONS(37), + [sym_system_identifier] = ACTIONS(39), + [sym_question_mark_identifier] = ACTIONS(41), + [sym_pointer_identifier] = ACTIONS(43), + [sym_macro_identifier] = ACTIONS(45), + [anon_sym_SEMI] = ACTIONS(97), [aux_sym__dec_number_token1] = ACTIONS(49), [aux_sym__dec_number_token2] = ACTIONS(51), [sym__comment] = ACTIONS(3), @@ -7821,82 +7897,187 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__help_command] = ACTIONS(55), }, [28] = { - [sym__commands_singleline] = STATE(479), - [sym__command] = STATE(423), - [sym_legacy_quoted_command] = STATE(255), - [sym__simple_command] = STATE(255), - [sym__tmp_command] = STATE(255), - [sym__iter_command] = STATE(255), - [sym__pipe_command] = STATE(255), - [sym_grep_command] = STATE(255), - [sym_html_disable_command] = STATE(255), - [sym_html_enable_command] = STATE(255), - [sym_pipe_command] = STATE(255), - [sym_iter_file_lines_command] = STATE(255), - [sym_iter_offsets_command] = STATE(255), - [sym_iter_offsetssizes_command] = STATE(255), - [sym_iter_hit_command] = STATE(255), - [sym_iter_interpret_command] = STATE(255), - [sym_iter_interpret_offsetssizes_command] = STATE(255), - [sym_iter_comment_command] = STATE(255), - [sym_iter_dbta_command] = STATE(255), - [sym_iter_dbtb_command] = STATE(255), - [sym_iter_dbts_command] = STATE(255), - [sym_iter_threads_command] = STATE(255), - [sym_iter_bbs_command] = STATE(255), - [sym_iter_instrs_command] = STATE(255), - [sym_iter_import_command] = STATE(255), - [sym_iter_sections_command] = STATE(255), - [sym_iter_segments_command] = STATE(255), - [sym_iter_symbol_command] = STATE(255), - [sym_iter_string_command] = STATE(255), - [sym_iter_flags_command] = STATE(255), - [sym_iter_function_command] = STATE(255), - [sym_iter_iomap_command] = STATE(255), - [sym_iter_dbgmap_command] = STATE(255), - [sym_iter_register_command] = STATE(255), - [sym_iter_step_command] = STATE(255), - [sym_tmp_seek_command] = STATE(255), - [sym_tmp_blksz_command] = STATE(255), - [sym_tmp_fromto_command] = STATE(255), - [sym_tmp_arch_command] = STATE(255), - [sym_tmp_bits_command] = STATE(255), - [sym_tmp_nthi_command] = STATE(255), - [sym_tmp_eval_command] = STATE(255), - [sym_tmp_fs_command] = STATE(255), - [sym_tmp_reli_command] = STATE(255), - [sym_tmp_kuery_command] = STATE(255), - [sym_tmp_fd_command] = STATE(255), - [sym_tmp_reg_command] = STATE(255), - [sym_tmp_file_command] = STATE(255), - [sym_tmp_string_command] = STATE(255), - [sym_tmp_value_command] = STATE(255), - [sym_tmp_hex_command] = STATE(255), - [sym_number_command] = STATE(255), - [sym_help_command] = STATE(255), - [sym_arged_command] = STATE(255), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(274), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(255), - [sym_Cf_cmd] = STATE(255), - [sym_pf_new_cmd] = STATE(255), - [sym_pf_dot_cmd] = STATE(255), - [sym_pf_cmd] = STATE(255), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(90), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(255), - [sym_redirect_command] = STATE(423), + [sym__commands_singleline] = STATE(464), + [sym__command] = STATE(441), + [sym_legacy_quoted_command] = STATE(266), + [sym__simple_command] = STATE(266), + [sym__tmp_command] = STATE(266), + [sym__iter_command] = STATE(266), + [sym__pipe_command] = STATE(266), + [sym_grep_command] = STATE(266), + [sym_html_disable_command] = STATE(266), + [sym_html_enable_command] = STATE(266), + [sym_pipe_command] = STATE(266), + [sym_iter_file_lines_command] = STATE(266), + [sym_iter_offsets_command] = STATE(266), + [sym_iter_offsetssizes_command] = STATE(266), + [sym_iter_hit_command] = STATE(266), + [sym_iter_interpret_command] = STATE(266), + [sym_iter_interpret_offsetssizes_command] = STATE(266), + [sym_iter_comment_command] = STATE(266), + [sym_iter_dbta_command] = STATE(266), + [sym_iter_dbtb_command] = STATE(266), + [sym_iter_dbts_command] = STATE(266), + [sym_iter_threads_command] = STATE(266), + [sym_iter_bbs_command] = STATE(266), + [sym_iter_instrs_command] = STATE(266), + [sym_iter_import_command] = STATE(266), + [sym_iter_sections_command] = STATE(266), + [sym_iter_segments_command] = STATE(266), + [sym_iter_symbol_command] = STATE(266), + [sym_iter_string_command] = STATE(266), + [sym_iter_flags_command] = STATE(266), + [sym_iter_function_command] = STATE(266), + [sym_iter_iomap_command] = STATE(266), + [sym_iter_dbgmap_command] = STATE(266), + [sym_iter_register_command] = STATE(266), + [sym_iter_step_command] = STATE(266), + [sym_tmp_seek_command] = STATE(266), + [sym_tmp_blksz_command] = STATE(266), + [sym_tmp_fromto_command] = STATE(266), + [sym_tmp_arch_command] = STATE(266), + [sym_tmp_bits_command] = STATE(266), + [sym_tmp_nthi_command] = STATE(266), + [sym_tmp_eval_command] = STATE(266), + [sym_tmp_fs_command] = STATE(266), + [sym_tmp_reli_command] = STATE(266), + [sym_tmp_kuery_command] = STATE(266), + [sym_tmp_fd_command] = STATE(266), + [sym_tmp_reg_command] = STATE(266), + [sym_tmp_file_command] = STATE(266), + [sym_tmp_string_command] = STATE(266), + [sym_tmp_value_command] = STATE(266), + [sym_tmp_hex_command] = STATE(266), + [sym_number_command] = STATE(266), + [sym_help_command] = STATE(266), + [sym_arged_command] = STATE(266), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(266), + [sym_Cf_cmd] = STATE(266), + [sym_pf_new_cmd] = STATE(266), + [sym_pf_dot_cmd] = STATE(266), + [sym_pf_cmd] = STATE(266), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(266), + [sym_redirect_command] = STATE(441), + [sym__dec_number] = STATE(2), + [aux_sym__commands_singleline_repeat1] = STATE(33), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_0] = ACTIONS(9), + [aux_sym_number_command_token1] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym__interpret_command_token1] = ACTIONS(15), + [aux_sym__interpret_command_token3] = ACTIONS(17), + [anon_sym_DOT_BANG] = ACTIONS(19), + [anon_sym_DOT_LPAREN] = ACTIONS(21), + [anon_sym_DOT_SLASH] = ACTIONS(23), + [anon_sym_pfo] = ACTIONS(25), + [anon_sym_Cf] = ACTIONS(27), + [sym_pf_dot_cmd_identifier] = ACTIONS(29), + [sym_pf_dot_full_cmd_identifier] = ACTIONS(31), + [aux_sym_pf_cmd_token1] = ACTIONS(33), + [anon_sym_PERCENT] = ACTIONS(35), + [anon_sym_env] = ACTIONS(35), + [anon_sym_DOT_DOT_DOT] = ACTIONS(37), + [sym_system_identifier] = ACTIONS(39), + [sym_question_mark_identifier] = ACTIONS(41), + [sym_pointer_identifier] = ACTIONS(43), + [sym_macro_identifier] = ACTIONS(45), + [anon_sym_SEMI] = ACTIONS(97), + [aux_sym__dec_number_token1] = ACTIONS(49), + [aux_sym__dec_number_token2] = ACTIONS(51), + [sym__comment] = ACTIONS(3), + [sym_cmd_identifier] = ACTIONS(53), + [sym__help_command] = ACTIONS(55), + }, + [29] = { + [sym__commands_singleline] = STATE(463), + [sym__command] = STATE(426), + [sym_legacy_quoted_command] = STATE(265), + [sym__simple_command] = STATE(265), + [sym__tmp_command] = STATE(265), + [sym__iter_command] = STATE(265), + [sym__pipe_command] = STATE(265), + [sym_grep_command] = STATE(265), + [sym_html_disable_command] = STATE(265), + [sym_html_enable_command] = STATE(265), + [sym_pipe_command] = STATE(265), + [sym_iter_file_lines_command] = STATE(265), + [sym_iter_offsets_command] = STATE(265), + [sym_iter_offsetssizes_command] = STATE(265), + [sym_iter_hit_command] = STATE(265), + [sym_iter_interpret_command] = STATE(265), + [sym_iter_interpret_offsetssizes_command] = STATE(265), + [sym_iter_comment_command] = STATE(265), + [sym_iter_dbta_command] = STATE(265), + [sym_iter_dbtb_command] = STATE(265), + [sym_iter_dbts_command] = STATE(265), + [sym_iter_threads_command] = STATE(265), + [sym_iter_bbs_command] = STATE(265), + [sym_iter_instrs_command] = STATE(265), + [sym_iter_import_command] = STATE(265), + [sym_iter_sections_command] = STATE(265), + [sym_iter_segments_command] = STATE(265), + [sym_iter_symbol_command] = STATE(265), + [sym_iter_string_command] = STATE(265), + [sym_iter_flags_command] = STATE(265), + [sym_iter_function_command] = STATE(265), + [sym_iter_iomap_command] = STATE(265), + [sym_iter_dbgmap_command] = STATE(265), + [sym_iter_register_command] = STATE(265), + [sym_iter_step_command] = STATE(265), + [sym_tmp_seek_command] = STATE(265), + [sym_tmp_blksz_command] = STATE(265), + [sym_tmp_fromto_command] = STATE(265), + [sym_tmp_arch_command] = STATE(265), + [sym_tmp_bits_command] = STATE(265), + [sym_tmp_nthi_command] = STATE(265), + [sym_tmp_eval_command] = STATE(265), + [sym_tmp_fs_command] = STATE(265), + [sym_tmp_reli_command] = STATE(265), + [sym_tmp_kuery_command] = STATE(265), + [sym_tmp_fd_command] = STATE(265), + [sym_tmp_reg_command] = STATE(265), + [sym_tmp_file_command] = STATE(265), + [sym_tmp_string_command] = STATE(265), + [sym_tmp_value_command] = STATE(265), + [sym_tmp_hex_command] = STATE(265), + [sym_number_command] = STATE(265), + [sym_help_command] = STATE(265), + [sym_arged_command] = STATE(265), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(281), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(265), + [sym_Cf_cmd] = STATE(265), + [sym_pf_new_cmd] = STATE(265), + [sym_pf_dot_cmd] = STATE(265), + [sym_pf_cmd] = STATE(265), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(91), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(265), + [sym_redirect_command] = STATE(426), [sym__dec_number] = STATE(5), - [aux_sym__commands_singleline_repeat1] = STATE(34), + [aux_sym__commands_singleline_repeat1] = STATE(35), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_0] = ACTIONS(9), [aux_sym_number_command_token1] = ACTIONS(11), @@ -7918,300 +8099,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_question_mark_identifier] = ACTIONS(83), [sym_pointer_identifier] = ACTIONS(43), [sym_macro_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), [aux_sym__dec_number_token1] = ACTIONS(49), [aux_sym__dec_number_token2] = ACTIONS(51), [sym__comment] = ACTIONS(3), [sym_cmd_identifier] = ACTIONS(87), [sym__help_command] = ACTIONS(89), }, - [29] = { - [sym__commands_singleline] = STATE(461), - [sym__command] = STATE(424), - [sym_legacy_quoted_command] = STATE(256), - [sym__simple_command] = STATE(256), - [sym__tmp_command] = STATE(256), - [sym__iter_command] = STATE(256), - [sym__pipe_command] = STATE(256), - [sym_grep_command] = STATE(256), - [sym_html_disable_command] = STATE(256), - [sym_html_enable_command] = STATE(256), - [sym_pipe_command] = STATE(256), - [sym_iter_file_lines_command] = STATE(256), - [sym_iter_offsets_command] = STATE(256), - [sym_iter_offsetssizes_command] = STATE(256), - [sym_iter_hit_command] = STATE(256), - [sym_iter_interpret_command] = STATE(256), - [sym_iter_interpret_offsetssizes_command] = STATE(256), - [sym_iter_comment_command] = STATE(256), - [sym_iter_dbta_command] = STATE(256), - [sym_iter_dbtb_command] = STATE(256), - [sym_iter_dbts_command] = STATE(256), - [sym_iter_threads_command] = STATE(256), - [sym_iter_bbs_command] = STATE(256), - [sym_iter_instrs_command] = STATE(256), - [sym_iter_import_command] = STATE(256), - [sym_iter_sections_command] = STATE(256), - [sym_iter_segments_command] = STATE(256), - [sym_iter_symbol_command] = STATE(256), - [sym_iter_string_command] = STATE(256), - [sym_iter_flags_command] = STATE(256), - [sym_iter_function_command] = STATE(256), - [sym_iter_iomap_command] = STATE(256), - [sym_iter_dbgmap_command] = STATE(256), - [sym_iter_register_command] = STATE(256), - [sym_iter_step_command] = STATE(256), - [sym_tmp_seek_command] = STATE(256), - [sym_tmp_blksz_command] = STATE(256), - [sym_tmp_fromto_command] = STATE(256), - [sym_tmp_arch_command] = STATE(256), - [sym_tmp_bits_command] = STATE(256), - [sym_tmp_nthi_command] = STATE(256), - [sym_tmp_eval_command] = STATE(256), - [sym_tmp_fs_command] = STATE(256), - [sym_tmp_reli_command] = STATE(256), - [sym_tmp_kuery_command] = STATE(256), - [sym_tmp_fd_command] = STATE(256), - [sym_tmp_reg_command] = STATE(256), - [sym_tmp_file_command] = STATE(256), - [sym_tmp_string_command] = STATE(256), - [sym_tmp_value_command] = STATE(256), - [sym_tmp_hex_command] = STATE(256), - [sym_number_command] = STATE(256), - [sym_help_command] = STATE(256), - [sym_arged_command] = STATE(256), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(256), - [sym_Cf_cmd] = STATE(256), - [sym_pf_new_cmd] = STATE(256), - [sym_pf_dot_cmd] = STATE(256), - [sym_pf_cmd] = STATE(256), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(256), - [sym_redirect_command] = STATE(424), - [sym__dec_number] = STATE(2), - [aux_sym__commands_singleline_repeat1] = STATE(33), - [anon_sym_DQUOTE] = ACTIONS(7), - [anon_sym_0] = ACTIONS(9), - [aux_sym_number_command_token1] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym__interpret_command_token1] = ACTIONS(15), - [aux_sym__interpret_command_token3] = ACTIONS(17), - [anon_sym_DOT_BANG] = ACTIONS(19), - [anon_sym_DOT_LPAREN] = ACTIONS(21), - [anon_sym_DOT_SLASH] = ACTIONS(23), - [anon_sym_pfo] = ACTIONS(25), - [anon_sym_Cf] = ACTIONS(27), - [sym_pf_dot_cmd_identifier] = ACTIONS(29), - [sym_pf_dot_full_cmd_identifier] = ACTIONS(31), - [aux_sym_pf_cmd_token1] = ACTIONS(33), - [anon_sym_PERCENT] = ACTIONS(35), - [anon_sym_env] = ACTIONS(35), - [anon_sym_DOT_DOT_DOT] = ACTIONS(37), - [sym_system_identifier] = ACTIONS(39), - [sym_question_mark_identifier] = ACTIONS(41), - [sym_pointer_identifier] = ACTIONS(43), - [sym_macro_identifier] = ACTIONS(45), - [anon_sym_SEMI] = ACTIONS(99), - [aux_sym__dec_number_token1] = ACTIONS(49), - [aux_sym__dec_number_token2] = ACTIONS(51), - [sym__comment] = ACTIONS(3), - [sym_cmd_identifier] = ACTIONS(53), - [sym__help_command] = ACTIONS(55), - }, [30] = { - [sym__commands_singleline] = STATE(484), - [sym__command] = STATE(424), - [sym_legacy_quoted_command] = STATE(256), - [sym__simple_command] = STATE(256), - [sym__tmp_command] = STATE(256), - [sym__iter_command] = STATE(256), - [sym__pipe_command] = STATE(256), - [sym_grep_command] = STATE(256), - [sym_html_disable_command] = STATE(256), - [sym_html_enable_command] = STATE(256), - [sym_pipe_command] = STATE(256), - [sym_iter_file_lines_command] = STATE(256), - [sym_iter_offsets_command] = STATE(256), - [sym_iter_offsetssizes_command] = STATE(256), - [sym_iter_hit_command] = STATE(256), - [sym_iter_interpret_command] = STATE(256), - [sym_iter_interpret_offsetssizes_command] = STATE(256), - [sym_iter_comment_command] = STATE(256), - [sym_iter_dbta_command] = STATE(256), - [sym_iter_dbtb_command] = STATE(256), - [sym_iter_dbts_command] = STATE(256), - [sym_iter_threads_command] = STATE(256), - [sym_iter_bbs_command] = STATE(256), - [sym_iter_instrs_command] = STATE(256), - [sym_iter_import_command] = STATE(256), - [sym_iter_sections_command] = STATE(256), - [sym_iter_segments_command] = STATE(256), - [sym_iter_symbol_command] = STATE(256), - [sym_iter_string_command] = STATE(256), - [sym_iter_flags_command] = STATE(256), - [sym_iter_function_command] = STATE(256), - [sym_iter_iomap_command] = STATE(256), - [sym_iter_dbgmap_command] = STATE(256), - [sym_iter_register_command] = STATE(256), - [sym_iter_step_command] = STATE(256), - [sym_tmp_seek_command] = STATE(256), - [sym_tmp_blksz_command] = STATE(256), - [sym_tmp_fromto_command] = STATE(256), - [sym_tmp_arch_command] = STATE(256), - [sym_tmp_bits_command] = STATE(256), - [sym_tmp_nthi_command] = STATE(256), - [sym_tmp_eval_command] = STATE(256), - [sym_tmp_fs_command] = STATE(256), - [sym_tmp_reli_command] = STATE(256), - [sym_tmp_kuery_command] = STATE(256), - [sym_tmp_fd_command] = STATE(256), - [sym_tmp_reg_command] = STATE(256), - [sym_tmp_file_command] = STATE(256), - [sym_tmp_string_command] = STATE(256), - [sym_tmp_value_command] = STATE(256), - [sym_tmp_hex_command] = STATE(256), - [sym_number_command] = STATE(256), - [sym_help_command] = STATE(256), - [sym_arged_command] = STATE(256), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), + [sym__commands_singleline] = STATE(471), + [sym__command] = STATE(426), + [sym_legacy_quoted_command] = STATE(265), + [sym__simple_command] = STATE(265), + [sym__tmp_command] = STATE(265), + [sym__iter_command] = STATE(265), + [sym__pipe_command] = STATE(265), + [sym_grep_command] = STATE(265), + [sym_html_disable_command] = STATE(265), + [sym_html_enable_command] = STATE(265), + [sym_pipe_command] = STATE(265), + [sym_iter_file_lines_command] = STATE(265), + [sym_iter_offsets_command] = STATE(265), + [sym_iter_offsetssizes_command] = STATE(265), + [sym_iter_hit_command] = STATE(265), + [sym_iter_interpret_command] = STATE(265), + [sym_iter_interpret_offsetssizes_command] = STATE(265), + [sym_iter_comment_command] = STATE(265), + [sym_iter_dbta_command] = STATE(265), + [sym_iter_dbtb_command] = STATE(265), + [sym_iter_dbts_command] = STATE(265), + [sym_iter_threads_command] = STATE(265), + [sym_iter_bbs_command] = STATE(265), + [sym_iter_instrs_command] = STATE(265), + [sym_iter_import_command] = STATE(265), + [sym_iter_sections_command] = STATE(265), + [sym_iter_segments_command] = STATE(265), + [sym_iter_symbol_command] = STATE(265), + [sym_iter_string_command] = STATE(265), + [sym_iter_flags_command] = STATE(265), + [sym_iter_function_command] = STATE(265), + [sym_iter_iomap_command] = STATE(265), + [sym_iter_dbgmap_command] = STATE(265), + [sym_iter_register_command] = STATE(265), + [sym_iter_step_command] = STATE(265), + [sym_tmp_seek_command] = STATE(265), + [sym_tmp_blksz_command] = STATE(265), + [sym_tmp_fromto_command] = STATE(265), + [sym_tmp_arch_command] = STATE(265), + [sym_tmp_bits_command] = STATE(265), + [sym_tmp_nthi_command] = STATE(265), + [sym_tmp_eval_command] = STATE(265), + [sym_tmp_fs_command] = STATE(265), + [sym_tmp_reli_command] = STATE(265), + [sym_tmp_kuery_command] = STATE(265), + [sym_tmp_fd_command] = STATE(265), + [sym_tmp_reg_command] = STATE(265), + [sym_tmp_file_command] = STATE(265), + [sym_tmp_string_command] = STATE(265), + [sym_tmp_value_command] = STATE(265), + [sym_tmp_hex_command] = STATE(265), + [sym_number_command] = STATE(265), + [sym_help_command] = STATE(265), + [sym_arged_command] = STATE(265), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(256), - [sym_Cf_cmd] = STATE(256), - [sym_pf_new_cmd] = STATE(256), - [sym_pf_dot_cmd] = STATE(256), - [sym_pf_cmd] = STATE(256), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(256), - [sym_redirect_command] = STATE(424), - [sym__dec_number] = STATE(2), - [aux_sym__commands_singleline_repeat1] = STATE(33), - [anon_sym_DQUOTE] = ACTIONS(7), - [anon_sym_0] = ACTIONS(9), - [aux_sym_number_command_token1] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym__interpret_command_token1] = ACTIONS(15), - [aux_sym__interpret_command_token3] = ACTIONS(17), - [anon_sym_DOT_BANG] = ACTIONS(19), - [anon_sym_DOT_LPAREN] = ACTIONS(21), - [anon_sym_DOT_SLASH] = ACTIONS(23), - [anon_sym_pfo] = ACTIONS(25), - [anon_sym_Cf] = ACTIONS(27), - [sym_pf_dot_cmd_identifier] = ACTIONS(29), - [sym_pf_dot_full_cmd_identifier] = ACTIONS(31), - [aux_sym_pf_cmd_token1] = ACTIONS(33), - [anon_sym_PERCENT] = ACTIONS(35), - [anon_sym_env] = ACTIONS(35), - [anon_sym_DOT_DOT_DOT] = ACTIONS(37), - [sym_system_identifier] = ACTIONS(39), - [sym_question_mark_identifier] = ACTIONS(41), - [sym_pointer_identifier] = ACTIONS(43), - [sym_macro_identifier] = ACTIONS(45), - [anon_sym_SEMI] = ACTIONS(99), - [aux_sym__dec_number_token1] = ACTIONS(49), - [aux_sym__dec_number_token2] = ACTIONS(51), - [sym__comment] = ACTIONS(3), - [sym_cmd_identifier] = ACTIONS(53), - [sym__help_command] = ACTIONS(55), - }, - [31] = { - [sym__commands_singleline] = STATE(460), - [sym__command] = STATE(423), - [sym_legacy_quoted_command] = STATE(255), - [sym__simple_command] = STATE(255), - [sym__tmp_command] = STATE(255), - [sym__iter_command] = STATE(255), - [sym__pipe_command] = STATE(255), - [sym_grep_command] = STATE(255), - [sym_html_disable_command] = STATE(255), - [sym_html_enable_command] = STATE(255), - [sym_pipe_command] = STATE(255), - [sym_iter_file_lines_command] = STATE(255), - [sym_iter_offsets_command] = STATE(255), - [sym_iter_offsetssizes_command] = STATE(255), - [sym_iter_hit_command] = STATE(255), - [sym_iter_interpret_command] = STATE(255), - [sym_iter_interpret_offsetssizes_command] = STATE(255), - [sym_iter_comment_command] = STATE(255), - [sym_iter_dbta_command] = STATE(255), - [sym_iter_dbtb_command] = STATE(255), - [sym_iter_dbts_command] = STATE(255), - [sym_iter_threads_command] = STATE(255), - [sym_iter_bbs_command] = STATE(255), - [sym_iter_instrs_command] = STATE(255), - [sym_iter_import_command] = STATE(255), - [sym_iter_sections_command] = STATE(255), - [sym_iter_segments_command] = STATE(255), - [sym_iter_symbol_command] = STATE(255), - [sym_iter_string_command] = STATE(255), - [sym_iter_flags_command] = STATE(255), - [sym_iter_function_command] = STATE(255), - [sym_iter_iomap_command] = STATE(255), - [sym_iter_dbgmap_command] = STATE(255), - [sym_iter_register_command] = STATE(255), - [sym_iter_step_command] = STATE(255), - [sym_tmp_seek_command] = STATE(255), - [sym_tmp_blksz_command] = STATE(255), - [sym_tmp_fromto_command] = STATE(255), - [sym_tmp_arch_command] = STATE(255), - [sym_tmp_bits_command] = STATE(255), - [sym_tmp_nthi_command] = STATE(255), - [sym_tmp_eval_command] = STATE(255), - [sym_tmp_fs_command] = STATE(255), - [sym_tmp_reli_command] = STATE(255), - [sym_tmp_kuery_command] = STATE(255), - [sym_tmp_fd_command] = STATE(255), - [sym_tmp_reg_command] = STATE(255), - [sym_tmp_file_command] = STATE(255), - [sym_tmp_string_command] = STATE(255), - [sym_tmp_value_command] = STATE(255), - [sym_tmp_hex_command] = STATE(255), - [sym_number_command] = STATE(255), - [sym_help_command] = STATE(255), - [sym_arged_command] = STATE(255), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(274), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(255), - [sym_Cf_cmd] = STATE(255), - [sym_pf_new_cmd] = STATE(255), - [sym_pf_dot_cmd] = STATE(255), - [sym_pf_cmd] = STATE(255), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(90), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(255), - [sym_redirect_command] = STATE(423), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(265), + [sym_Cf_cmd] = STATE(265), + [sym_pf_new_cmd] = STATE(265), + [sym_pf_dot_cmd] = STATE(265), + [sym_pf_cmd] = STATE(265), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(91), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(265), + [sym_redirect_command] = STATE(426), [sym__dec_number] = STATE(5), - [aux_sym__commands_singleline_repeat1] = STATE(34), + [aux_sym__commands_singleline_repeat1] = STATE(35), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_0] = ACTIONS(9), [aux_sym_number_command_token1] = ACTIONS(11), @@ -8233,7 +8204,112 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_question_mark_identifier] = ACTIONS(83), [sym_pointer_identifier] = ACTIONS(43), [sym_macro_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(97), + [anon_sym_SEMI] = ACTIONS(99), + [aux_sym__dec_number_token1] = ACTIONS(49), + [aux_sym__dec_number_token2] = ACTIONS(51), + [sym__comment] = ACTIONS(3), + [sym_cmd_identifier] = ACTIONS(87), + [sym__help_command] = ACTIONS(89), + }, + [31] = { + [sym__commands_singleline] = STATE(461), + [sym__command] = STATE(426), + [sym_legacy_quoted_command] = STATE(265), + [sym__simple_command] = STATE(265), + [sym__tmp_command] = STATE(265), + [sym__iter_command] = STATE(265), + [sym__pipe_command] = STATE(265), + [sym_grep_command] = STATE(265), + [sym_html_disable_command] = STATE(265), + [sym_html_enable_command] = STATE(265), + [sym_pipe_command] = STATE(265), + [sym_iter_file_lines_command] = STATE(265), + [sym_iter_offsets_command] = STATE(265), + [sym_iter_offsetssizes_command] = STATE(265), + [sym_iter_hit_command] = STATE(265), + [sym_iter_interpret_command] = STATE(265), + [sym_iter_interpret_offsetssizes_command] = STATE(265), + [sym_iter_comment_command] = STATE(265), + [sym_iter_dbta_command] = STATE(265), + [sym_iter_dbtb_command] = STATE(265), + [sym_iter_dbts_command] = STATE(265), + [sym_iter_threads_command] = STATE(265), + [sym_iter_bbs_command] = STATE(265), + [sym_iter_instrs_command] = STATE(265), + [sym_iter_import_command] = STATE(265), + [sym_iter_sections_command] = STATE(265), + [sym_iter_segments_command] = STATE(265), + [sym_iter_symbol_command] = STATE(265), + [sym_iter_string_command] = STATE(265), + [sym_iter_flags_command] = STATE(265), + [sym_iter_function_command] = STATE(265), + [sym_iter_iomap_command] = STATE(265), + [sym_iter_dbgmap_command] = STATE(265), + [sym_iter_register_command] = STATE(265), + [sym_iter_step_command] = STATE(265), + [sym_tmp_seek_command] = STATE(265), + [sym_tmp_blksz_command] = STATE(265), + [sym_tmp_fromto_command] = STATE(265), + [sym_tmp_arch_command] = STATE(265), + [sym_tmp_bits_command] = STATE(265), + [sym_tmp_nthi_command] = STATE(265), + [sym_tmp_eval_command] = STATE(265), + [sym_tmp_fs_command] = STATE(265), + [sym_tmp_reli_command] = STATE(265), + [sym_tmp_kuery_command] = STATE(265), + [sym_tmp_fd_command] = STATE(265), + [sym_tmp_reg_command] = STATE(265), + [sym_tmp_file_command] = STATE(265), + [sym_tmp_string_command] = STATE(265), + [sym_tmp_value_command] = STATE(265), + [sym_tmp_hex_command] = STATE(265), + [sym_number_command] = STATE(265), + [sym_help_command] = STATE(265), + [sym_arged_command] = STATE(265), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(281), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(265), + [sym_Cf_cmd] = STATE(265), + [sym_pf_new_cmd] = STATE(265), + [sym_pf_dot_cmd] = STATE(265), + [sym_pf_cmd] = STATE(265), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(91), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(265), + [sym_redirect_command] = STATE(426), + [sym__dec_number] = STATE(5), + [aux_sym__commands_singleline_repeat1] = STATE(35), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_0] = ACTIONS(9), + [aux_sym_number_command_token1] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(65), + [aux_sym__interpret_command_token1] = ACTIONS(67), + [aux_sym__interpret_command_token3] = ACTIONS(69), + [anon_sym_DOT_BANG] = ACTIONS(19), + [anon_sym_DOT_LPAREN] = ACTIONS(21), + [anon_sym_DOT_SLASH] = ACTIONS(23), + [anon_sym_pfo] = ACTIONS(71), + [anon_sym_Cf] = ACTIONS(73), + [sym_pf_dot_cmd_identifier] = ACTIONS(75), + [sym_pf_dot_full_cmd_identifier] = ACTIONS(77), + [aux_sym_pf_cmd_token1] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(35), + [anon_sym_env] = ACTIONS(35), + [anon_sym_DOT_DOT_DOT] = ACTIONS(37), + [sym_system_identifier] = ACTIONS(81), + [sym_question_mark_identifier] = ACTIONS(83), + [sym_pointer_identifier] = ACTIONS(43), + [sym_macro_identifier] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(99), [aux_sym__dec_number_token1] = ACTIONS(49), [aux_sym__dec_number_token2] = ACTIONS(51), [sym__comment] = ACTIONS(3), @@ -8241,391 +8317,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__help_command] = ACTIONS(89), }, [32] = { - [sym__command] = STATE(427), - [sym_legacy_quoted_command] = STATE(256), - [sym__simple_command] = STATE(256), - [sym__tmp_command] = STATE(256), - [sym__iter_command] = STATE(256), - [sym__pipe_command] = STATE(256), - [sym_grep_command] = STATE(256), - [sym_html_disable_command] = STATE(256), - [sym_html_enable_command] = STATE(256), - [sym_pipe_command] = STATE(256), - [sym_iter_file_lines_command] = STATE(256), - [sym_iter_offsets_command] = STATE(256), - [sym_iter_offsetssizes_command] = STATE(256), - [sym_iter_hit_command] = STATE(256), - [sym_iter_interpret_command] = STATE(256), - [sym_iter_interpret_offsetssizes_command] = STATE(256), - [sym_iter_comment_command] = STATE(256), - [sym_iter_dbta_command] = STATE(256), - [sym_iter_dbtb_command] = STATE(256), - [sym_iter_dbts_command] = STATE(256), - [sym_iter_threads_command] = STATE(256), - [sym_iter_bbs_command] = STATE(256), - [sym_iter_instrs_command] = STATE(256), - [sym_iter_import_command] = STATE(256), - [sym_iter_sections_command] = STATE(256), - [sym_iter_segments_command] = STATE(256), - [sym_iter_symbol_command] = STATE(256), - [sym_iter_string_command] = STATE(256), - [sym_iter_flags_command] = STATE(256), - [sym_iter_function_command] = STATE(256), - [sym_iter_iomap_command] = STATE(256), - [sym_iter_dbgmap_command] = STATE(256), - [sym_iter_register_command] = STATE(256), - [sym_iter_step_command] = STATE(256), - [sym_tmp_seek_command] = STATE(256), - [sym_tmp_blksz_command] = STATE(256), - [sym_tmp_fromto_command] = STATE(256), - [sym_tmp_arch_command] = STATE(256), - [sym_tmp_bits_command] = STATE(256), - [sym_tmp_nthi_command] = STATE(256), - [sym_tmp_eval_command] = STATE(256), - [sym_tmp_fs_command] = STATE(256), - [sym_tmp_reli_command] = STATE(256), - [sym_tmp_kuery_command] = STATE(256), - [sym_tmp_fd_command] = STATE(256), - [sym_tmp_reg_command] = STATE(256), - [sym_tmp_file_command] = STATE(256), - [sym_tmp_string_command] = STATE(256), - [sym_tmp_value_command] = STATE(256), - [sym_tmp_hex_command] = STATE(256), - [sym_number_command] = STATE(256), - [sym_help_command] = STATE(256), - [sym_arged_command] = STATE(256), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), + [sym__command] = STATE(428), + [sym_legacy_quoted_command] = STATE(265), + [sym__simple_command] = STATE(265), + [sym__tmp_command] = STATE(265), + [sym__iter_command] = STATE(265), + [sym__pipe_command] = STATE(265), + [sym_grep_command] = STATE(265), + [sym_html_disable_command] = STATE(265), + [sym_html_enable_command] = STATE(265), + [sym_pipe_command] = STATE(265), + [sym_iter_file_lines_command] = STATE(265), + [sym_iter_offsets_command] = STATE(265), + [sym_iter_offsetssizes_command] = STATE(265), + [sym_iter_hit_command] = STATE(265), + [sym_iter_interpret_command] = STATE(265), + [sym_iter_interpret_offsetssizes_command] = STATE(265), + [sym_iter_comment_command] = STATE(265), + [sym_iter_dbta_command] = STATE(265), + [sym_iter_dbtb_command] = STATE(265), + [sym_iter_dbts_command] = STATE(265), + [sym_iter_threads_command] = STATE(265), + [sym_iter_bbs_command] = STATE(265), + [sym_iter_instrs_command] = STATE(265), + [sym_iter_import_command] = STATE(265), + [sym_iter_sections_command] = STATE(265), + [sym_iter_segments_command] = STATE(265), + [sym_iter_symbol_command] = STATE(265), + [sym_iter_string_command] = STATE(265), + [sym_iter_flags_command] = STATE(265), + [sym_iter_function_command] = STATE(265), + [sym_iter_iomap_command] = STATE(265), + [sym_iter_dbgmap_command] = STATE(265), + [sym_iter_register_command] = STATE(265), + [sym_iter_step_command] = STATE(265), + [sym_tmp_seek_command] = STATE(265), + [sym_tmp_blksz_command] = STATE(265), + [sym_tmp_fromto_command] = STATE(265), + [sym_tmp_arch_command] = STATE(265), + [sym_tmp_bits_command] = STATE(265), + [sym_tmp_nthi_command] = STATE(265), + [sym_tmp_eval_command] = STATE(265), + [sym_tmp_fs_command] = STATE(265), + [sym_tmp_reli_command] = STATE(265), + [sym_tmp_kuery_command] = STATE(265), + [sym_tmp_fd_command] = STATE(265), + [sym_tmp_reg_command] = STATE(265), + [sym_tmp_file_command] = STATE(265), + [sym_tmp_string_command] = STATE(265), + [sym_tmp_value_command] = STATE(265), + [sym_tmp_hex_command] = STATE(265), + [sym_number_command] = STATE(265), + [sym_help_command] = STATE(265), + [sym_arged_command] = STATE(265), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(256), - [sym_Cf_cmd] = STATE(256), - [sym_pf_new_cmd] = STATE(256), - [sym_pf_dot_cmd] = STATE(256), - [sym_pf_cmd] = STATE(256), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(256), - [sym_redirect_command] = STATE(427), - [sym__dec_number] = STATE(2), - [anon_sym_DQUOTE] = ACTIONS(7), - [anon_sym_RPAREN] = ACTIONS(101), - [anon_sym_0] = ACTIONS(9), - [aux_sym_number_command_token1] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym__interpret_command_token1] = ACTIONS(15), - [aux_sym__interpret_command_token3] = ACTIONS(17), - [anon_sym_DOT_BANG] = ACTIONS(19), - [anon_sym_DOT_LPAREN] = ACTIONS(21), - [anon_sym_DOT_SLASH] = ACTIONS(23), - [anon_sym_pfo] = ACTIONS(25), - [anon_sym_Cf] = ACTIONS(27), - [sym_pf_dot_cmd_identifier] = ACTIONS(29), - [sym_pf_dot_full_cmd_identifier] = ACTIONS(31), - [aux_sym_pf_cmd_token1] = ACTIONS(33), - [anon_sym_PERCENT] = ACTIONS(35), - [anon_sym_env] = ACTIONS(35), - [anon_sym_DOT_DOT_DOT] = ACTIONS(37), - [sym_system_identifier] = ACTIONS(39), - [sym_question_mark_identifier] = ACTIONS(41), - [sym_pointer_identifier] = ACTIONS(43), - [sym_macro_identifier] = ACTIONS(45), - [anon_sym_SEMI] = ACTIONS(101), - [aux_sym__dec_number_token1] = ACTIONS(49), - [aux_sym__dec_number_token2] = ACTIONS(51), - [sym__comment] = ACTIONS(3), - [sym_cmd_identifier] = ACTIONS(53), - [sym__help_command] = ACTIONS(55), - }, - [33] = { - [sym__command] = STATE(416), - [sym_legacy_quoted_command] = STATE(256), - [sym__simple_command] = STATE(256), - [sym__tmp_command] = STATE(256), - [sym__iter_command] = STATE(256), - [sym__pipe_command] = STATE(256), - [sym_grep_command] = STATE(256), - [sym_html_disable_command] = STATE(256), - [sym_html_enable_command] = STATE(256), - [sym_pipe_command] = STATE(256), - [sym_iter_file_lines_command] = STATE(256), - [sym_iter_offsets_command] = STATE(256), - [sym_iter_offsetssizes_command] = STATE(256), - [sym_iter_hit_command] = STATE(256), - [sym_iter_interpret_command] = STATE(256), - [sym_iter_interpret_offsetssizes_command] = STATE(256), - [sym_iter_comment_command] = STATE(256), - [sym_iter_dbta_command] = STATE(256), - [sym_iter_dbtb_command] = STATE(256), - [sym_iter_dbts_command] = STATE(256), - [sym_iter_threads_command] = STATE(256), - [sym_iter_bbs_command] = STATE(256), - [sym_iter_instrs_command] = STATE(256), - [sym_iter_import_command] = STATE(256), - [sym_iter_sections_command] = STATE(256), - [sym_iter_segments_command] = STATE(256), - [sym_iter_symbol_command] = STATE(256), - [sym_iter_string_command] = STATE(256), - [sym_iter_flags_command] = STATE(256), - [sym_iter_function_command] = STATE(256), - [sym_iter_iomap_command] = STATE(256), - [sym_iter_dbgmap_command] = STATE(256), - [sym_iter_register_command] = STATE(256), - [sym_iter_step_command] = STATE(256), - [sym_tmp_seek_command] = STATE(256), - [sym_tmp_blksz_command] = STATE(256), - [sym_tmp_fromto_command] = STATE(256), - [sym_tmp_arch_command] = STATE(256), - [sym_tmp_bits_command] = STATE(256), - [sym_tmp_nthi_command] = STATE(256), - [sym_tmp_eval_command] = STATE(256), - [sym_tmp_fs_command] = STATE(256), - [sym_tmp_reli_command] = STATE(256), - [sym_tmp_kuery_command] = STATE(256), - [sym_tmp_fd_command] = STATE(256), - [sym_tmp_reg_command] = STATE(256), - [sym_tmp_file_command] = STATE(256), - [sym_tmp_string_command] = STATE(256), - [sym_tmp_value_command] = STATE(256), - [sym_tmp_hex_command] = STATE(256), - [sym_number_command] = STATE(256), - [sym_help_command] = STATE(256), - [sym_arged_command] = STATE(256), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(256), - [sym_Cf_cmd] = STATE(256), - [sym_pf_new_cmd] = STATE(256), - [sym_pf_dot_cmd] = STATE(256), - [sym_pf_cmd] = STATE(256), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(256), - [sym_redirect_command] = STATE(416), - [sym__dec_number] = STATE(2), - [aux_sym__commands_singleline_repeat1] = STATE(265), - [anon_sym_DQUOTE] = ACTIONS(7), - [anon_sym_0] = ACTIONS(9), - [aux_sym_number_command_token1] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym__interpret_command_token1] = ACTIONS(15), - [aux_sym__interpret_command_token3] = ACTIONS(17), - [anon_sym_DOT_BANG] = ACTIONS(19), - [anon_sym_DOT_LPAREN] = ACTIONS(21), - [anon_sym_DOT_SLASH] = ACTIONS(23), - [anon_sym_pfo] = ACTIONS(25), - [anon_sym_Cf] = ACTIONS(27), - [sym_pf_dot_cmd_identifier] = ACTIONS(29), - [sym_pf_dot_full_cmd_identifier] = ACTIONS(31), - [aux_sym_pf_cmd_token1] = ACTIONS(33), - [anon_sym_PERCENT] = ACTIONS(35), - [anon_sym_env] = ACTIONS(35), - [anon_sym_DOT_DOT_DOT] = ACTIONS(37), - [sym_system_identifier] = ACTIONS(39), - [sym_question_mark_identifier] = ACTIONS(41), - [sym_pointer_identifier] = ACTIONS(43), - [sym_macro_identifier] = ACTIONS(45), - [anon_sym_SEMI] = ACTIONS(103), - [aux_sym__dec_number_token1] = ACTIONS(49), - [aux_sym__dec_number_token2] = ACTIONS(51), - [sym__comment] = ACTIONS(3), - [sym_cmd_identifier] = ACTIONS(53), - [sym__help_command] = ACTIONS(55), - }, - [34] = { - [sym__command] = STATE(421), - [sym_legacy_quoted_command] = STATE(255), - [sym__simple_command] = STATE(255), - [sym__tmp_command] = STATE(255), - [sym__iter_command] = STATE(255), - [sym__pipe_command] = STATE(255), - [sym_grep_command] = STATE(255), - [sym_html_disable_command] = STATE(255), - [sym_html_enable_command] = STATE(255), - [sym_pipe_command] = STATE(255), - [sym_iter_file_lines_command] = STATE(255), - [sym_iter_offsets_command] = STATE(255), - [sym_iter_offsetssizes_command] = STATE(255), - [sym_iter_hit_command] = STATE(255), - [sym_iter_interpret_command] = STATE(255), - [sym_iter_interpret_offsetssizes_command] = STATE(255), - [sym_iter_comment_command] = STATE(255), - [sym_iter_dbta_command] = STATE(255), - [sym_iter_dbtb_command] = STATE(255), - [sym_iter_dbts_command] = STATE(255), - [sym_iter_threads_command] = STATE(255), - [sym_iter_bbs_command] = STATE(255), - [sym_iter_instrs_command] = STATE(255), - [sym_iter_import_command] = STATE(255), - [sym_iter_sections_command] = STATE(255), - [sym_iter_segments_command] = STATE(255), - [sym_iter_symbol_command] = STATE(255), - [sym_iter_string_command] = STATE(255), - [sym_iter_flags_command] = STATE(255), - [sym_iter_function_command] = STATE(255), - [sym_iter_iomap_command] = STATE(255), - [sym_iter_dbgmap_command] = STATE(255), - [sym_iter_register_command] = STATE(255), - [sym_iter_step_command] = STATE(255), - [sym_tmp_seek_command] = STATE(255), - [sym_tmp_blksz_command] = STATE(255), - [sym_tmp_fromto_command] = STATE(255), - [sym_tmp_arch_command] = STATE(255), - [sym_tmp_bits_command] = STATE(255), - [sym_tmp_nthi_command] = STATE(255), - [sym_tmp_eval_command] = STATE(255), - [sym_tmp_fs_command] = STATE(255), - [sym_tmp_reli_command] = STATE(255), - [sym_tmp_kuery_command] = STATE(255), - [sym_tmp_fd_command] = STATE(255), - [sym_tmp_reg_command] = STATE(255), - [sym_tmp_file_command] = STATE(255), - [sym_tmp_string_command] = STATE(255), - [sym_tmp_value_command] = STATE(255), - [sym_tmp_hex_command] = STATE(255), - [sym_number_command] = STATE(255), - [sym_help_command] = STATE(255), - [sym_arged_command] = STATE(255), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(274), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(255), - [sym_Cf_cmd] = STATE(255), - [sym_pf_new_cmd] = STATE(255), - [sym_pf_dot_cmd] = STATE(255), - [sym_pf_cmd] = STATE(255), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(90), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(255), - [sym_redirect_command] = STATE(421), - [sym__dec_number] = STATE(5), - [aux_sym__commands_singleline_repeat1] = STATE(265), - [anon_sym_DQUOTE] = ACTIONS(7), - [anon_sym_0] = ACTIONS(9), - [aux_sym_number_command_token1] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(65), - [aux_sym__interpret_command_token1] = ACTIONS(67), - [aux_sym__interpret_command_token3] = ACTIONS(69), - [anon_sym_DOT_BANG] = ACTIONS(19), - [anon_sym_DOT_LPAREN] = ACTIONS(21), - [anon_sym_DOT_SLASH] = ACTIONS(23), - [anon_sym_pfo] = ACTIONS(71), - [anon_sym_Cf] = ACTIONS(73), - [sym_pf_dot_cmd_identifier] = ACTIONS(75), - [sym_pf_dot_full_cmd_identifier] = ACTIONS(77), - [aux_sym_pf_cmd_token1] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(35), - [anon_sym_env] = ACTIONS(35), - [anon_sym_DOT_DOT_DOT] = ACTIONS(37), - [sym_system_identifier] = ACTIONS(81), - [sym_question_mark_identifier] = ACTIONS(83), - [sym_pointer_identifier] = ACTIONS(43), - [sym_macro_identifier] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(103), - [aux_sym__dec_number_token1] = ACTIONS(49), - [aux_sym__dec_number_token2] = ACTIONS(51), - [sym__comment] = ACTIONS(3), - [sym_cmd_identifier] = ACTIONS(87), - [sym__help_command] = ACTIONS(89), - }, - [35] = { - [sym__command] = STATE(427), - [sym_legacy_quoted_command] = STATE(255), - [sym__simple_command] = STATE(255), - [sym__tmp_command] = STATE(255), - [sym__iter_command] = STATE(255), - [sym__pipe_command] = STATE(255), - [sym_grep_command] = STATE(255), - [sym_html_disable_command] = STATE(255), - [sym_html_enable_command] = STATE(255), - [sym_pipe_command] = STATE(255), - [sym_iter_file_lines_command] = STATE(255), - [sym_iter_offsets_command] = STATE(255), - [sym_iter_offsetssizes_command] = STATE(255), - [sym_iter_hit_command] = STATE(255), - [sym_iter_interpret_command] = STATE(255), - [sym_iter_interpret_offsetssizes_command] = STATE(255), - [sym_iter_comment_command] = STATE(255), - [sym_iter_dbta_command] = STATE(255), - [sym_iter_dbtb_command] = STATE(255), - [sym_iter_dbts_command] = STATE(255), - [sym_iter_threads_command] = STATE(255), - [sym_iter_bbs_command] = STATE(255), - [sym_iter_instrs_command] = STATE(255), - [sym_iter_import_command] = STATE(255), - [sym_iter_sections_command] = STATE(255), - [sym_iter_segments_command] = STATE(255), - [sym_iter_symbol_command] = STATE(255), - [sym_iter_string_command] = STATE(255), - [sym_iter_flags_command] = STATE(255), - [sym_iter_function_command] = STATE(255), - [sym_iter_iomap_command] = STATE(255), - [sym_iter_dbgmap_command] = STATE(255), - [sym_iter_register_command] = STATE(255), - [sym_iter_step_command] = STATE(255), - [sym_tmp_seek_command] = STATE(255), - [sym_tmp_blksz_command] = STATE(255), - [sym_tmp_fromto_command] = STATE(255), - [sym_tmp_arch_command] = STATE(255), - [sym_tmp_bits_command] = STATE(255), - [sym_tmp_nthi_command] = STATE(255), - [sym_tmp_eval_command] = STATE(255), - [sym_tmp_fs_command] = STATE(255), - [sym_tmp_reli_command] = STATE(255), - [sym_tmp_kuery_command] = STATE(255), - [sym_tmp_fd_command] = STATE(255), - [sym_tmp_reg_command] = STATE(255), - [sym_tmp_file_command] = STATE(255), - [sym_tmp_string_command] = STATE(255), - [sym_tmp_value_command] = STATE(255), - [sym_tmp_hex_command] = STATE(255), - [sym_number_command] = STATE(255), - [sym_help_command] = STATE(255), - [sym_arged_command] = STATE(255), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(274), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(255), - [sym_Cf_cmd] = STATE(255), - [sym_pf_new_cmd] = STATE(255), - [sym_pf_dot_cmd] = STATE(255), - [sym_pf_cmd] = STATE(255), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(90), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(255), - [sym_redirect_command] = STATE(427), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(265), + [sym_Cf_cmd] = STATE(265), + [sym_pf_new_cmd] = STATE(265), + [sym_pf_dot_cmd] = STATE(265), + [sym_pf_cmd] = STATE(265), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(91), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(265), + [sym_redirect_command] = STATE(428), [sym__dec_number] = STATE(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_0] = ACTIONS(9), @@ -8656,80 +8420,392 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_cmd_identifier] = ACTIONS(87), [sym__help_command] = ACTIONS(89), }, - [36] = { - [sym__command] = STATE(419), - [sym_legacy_quoted_command] = STATE(256), - [sym__simple_command] = STATE(256), - [sym__tmp_command] = STATE(256), - [sym__iter_command] = STATE(256), - [sym__pipe_command] = STATE(256), - [sym_grep_command] = STATE(256), - [sym_html_disable_command] = STATE(256), - [sym_html_enable_command] = STATE(256), - [sym_pipe_command] = STATE(256), - [sym_iter_file_lines_command] = STATE(256), - [sym_iter_offsets_command] = STATE(256), - [sym_iter_offsetssizes_command] = STATE(256), - [sym_iter_hit_command] = STATE(256), - [sym_iter_interpret_command] = STATE(256), - [sym_iter_interpret_offsetssizes_command] = STATE(256), - [sym_iter_comment_command] = STATE(256), - [sym_iter_dbta_command] = STATE(256), - [sym_iter_dbtb_command] = STATE(256), - [sym_iter_dbts_command] = STATE(256), - [sym_iter_threads_command] = STATE(256), - [sym_iter_bbs_command] = STATE(256), - [sym_iter_instrs_command] = STATE(256), - [sym_iter_import_command] = STATE(256), - [sym_iter_sections_command] = STATE(256), - [sym_iter_segments_command] = STATE(256), - [sym_iter_symbol_command] = STATE(256), - [sym_iter_string_command] = STATE(256), - [sym_iter_flags_command] = STATE(256), - [sym_iter_function_command] = STATE(256), - [sym_iter_iomap_command] = STATE(256), - [sym_iter_dbgmap_command] = STATE(256), - [sym_iter_register_command] = STATE(256), - [sym_iter_step_command] = STATE(256), - [sym_tmp_seek_command] = STATE(256), - [sym_tmp_blksz_command] = STATE(256), - [sym_tmp_fromto_command] = STATE(256), - [sym_tmp_arch_command] = STATE(256), - [sym_tmp_bits_command] = STATE(256), - [sym_tmp_nthi_command] = STATE(256), - [sym_tmp_eval_command] = STATE(256), - [sym_tmp_fs_command] = STATE(256), - [sym_tmp_reli_command] = STATE(256), - [sym_tmp_kuery_command] = STATE(256), - [sym_tmp_fd_command] = STATE(256), - [sym_tmp_reg_command] = STATE(256), - [sym_tmp_file_command] = STATE(256), - [sym_tmp_string_command] = STATE(256), - [sym_tmp_value_command] = STATE(256), - [sym_tmp_hex_command] = STATE(256), - [sym_number_command] = STATE(256), - [sym_help_command] = STATE(256), - [sym_arged_command] = STATE(256), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), + [33] = { + [sym__command] = STATE(424), + [sym_legacy_quoted_command] = STATE(266), + [sym__simple_command] = STATE(266), + [sym__tmp_command] = STATE(266), + [sym__iter_command] = STATE(266), + [sym__pipe_command] = STATE(266), + [sym_grep_command] = STATE(266), + [sym_html_disable_command] = STATE(266), + [sym_html_enable_command] = STATE(266), + [sym_pipe_command] = STATE(266), + [sym_iter_file_lines_command] = STATE(266), + [sym_iter_offsets_command] = STATE(266), + [sym_iter_offsetssizes_command] = STATE(266), + [sym_iter_hit_command] = STATE(266), + [sym_iter_interpret_command] = STATE(266), + [sym_iter_interpret_offsetssizes_command] = STATE(266), + [sym_iter_comment_command] = STATE(266), + [sym_iter_dbta_command] = STATE(266), + [sym_iter_dbtb_command] = STATE(266), + [sym_iter_dbts_command] = STATE(266), + [sym_iter_threads_command] = STATE(266), + [sym_iter_bbs_command] = STATE(266), + [sym_iter_instrs_command] = STATE(266), + [sym_iter_import_command] = STATE(266), + [sym_iter_sections_command] = STATE(266), + [sym_iter_segments_command] = STATE(266), + [sym_iter_symbol_command] = STATE(266), + [sym_iter_string_command] = STATE(266), + [sym_iter_flags_command] = STATE(266), + [sym_iter_function_command] = STATE(266), + [sym_iter_iomap_command] = STATE(266), + [sym_iter_dbgmap_command] = STATE(266), + [sym_iter_register_command] = STATE(266), + [sym_iter_step_command] = STATE(266), + [sym_tmp_seek_command] = STATE(266), + [sym_tmp_blksz_command] = STATE(266), + [sym_tmp_fromto_command] = STATE(266), + [sym_tmp_arch_command] = STATE(266), + [sym_tmp_bits_command] = STATE(266), + [sym_tmp_nthi_command] = STATE(266), + [sym_tmp_eval_command] = STATE(266), + [sym_tmp_fs_command] = STATE(266), + [sym_tmp_reli_command] = STATE(266), + [sym_tmp_kuery_command] = STATE(266), + [sym_tmp_fd_command] = STATE(266), + [sym_tmp_reg_command] = STATE(266), + [sym_tmp_file_command] = STATE(266), + [sym_tmp_string_command] = STATE(266), + [sym_tmp_value_command] = STATE(266), + [sym_tmp_hex_command] = STATE(266), + [sym_number_command] = STATE(266), + [sym_help_command] = STATE(266), + [sym_arged_command] = STATE(266), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(266), + [sym_Cf_cmd] = STATE(266), + [sym_pf_new_cmd] = STATE(266), + [sym_pf_dot_cmd] = STATE(266), + [sym_pf_cmd] = STATE(266), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(266), + [sym_redirect_command] = STATE(424), + [sym__dec_number] = STATE(2), + [aux_sym__commands_singleline_repeat1] = STATE(274), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_0] = ACTIONS(9), + [aux_sym_number_command_token1] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym__interpret_command_token1] = ACTIONS(15), + [aux_sym__interpret_command_token3] = ACTIONS(17), + [anon_sym_DOT_BANG] = ACTIONS(19), + [anon_sym_DOT_LPAREN] = ACTIONS(21), + [anon_sym_DOT_SLASH] = ACTIONS(23), + [anon_sym_pfo] = ACTIONS(25), + [anon_sym_Cf] = ACTIONS(27), + [sym_pf_dot_cmd_identifier] = ACTIONS(29), + [sym_pf_dot_full_cmd_identifier] = ACTIONS(31), + [aux_sym_pf_cmd_token1] = ACTIONS(33), + [anon_sym_PERCENT] = ACTIONS(35), + [anon_sym_env] = ACTIONS(35), + [anon_sym_DOT_DOT_DOT] = ACTIONS(37), + [sym_system_identifier] = ACTIONS(39), + [sym_question_mark_identifier] = ACTIONS(41), + [sym_pointer_identifier] = ACTIONS(43), + [sym_macro_identifier] = ACTIONS(45), + [anon_sym_SEMI] = ACTIONS(103), + [aux_sym__dec_number_token1] = ACTIONS(49), + [aux_sym__dec_number_token2] = ACTIONS(51), + [sym__comment] = ACTIONS(3), + [sym_cmd_identifier] = ACTIONS(53), + [sym__help_command] = ACTIONS(55), + }, + [34] = { + [sym__command] = STATE(428), + [sym_legacy_quoted_command] = STATE(266), + [sym__simple_command] = STATE(266), + [sym__tmp_command] = STATE(266), + [sym__iter_command] = STATE(266), + [sym__pipe_command] = STATE(266), + [sym_grep_command] = STATE(266), + [sym_html_disable_command] = STATE(266), + [sym_html_enable_command] = STATE(266), + [sym_pipe_command] = STATE(266), + [sym_iter_file_lines_command] = STATE(266), + [sym_iter_offsets_command] = STATE(266), + [sym_iter_offsetssizes_command] = STATE(266), + [sym_iter_hit_command] = STATE(266), + [sym_iter_interpret_command] = STATE(266), + [sym_iter_interpret_offsetssizes_command] = STATE(266), + [sym_iter_comment_command] = STATE(266), + [sym_iter_dbta_command] = STATE(266), + [sym_iter_dbtb_command] = STATE(266), + [sym_iter_dbts_command] = STATE(266), + [sym_iter_threads_command] = STATE(266), + [sym_iter_bbs_command] = STATE(266), + [sym_iter_instrs_command] = STATE(266), + [sym_iter_import_command] = STATE(266), + [sym_iter_sections_command] = STATE(266), + [sym_iter_segments_command] = STATE(266), + [sym_iter_symbol_command] = STATE(266), + [sym_iter_string_command] = STATE(266), + [sym_iter_flags_command] = STATE(266), + [sym_iter_function_command] = STATE(266), + [sym_iter_iomap_command] = STATE(266), + [sym_iter_dbgmap_command] = STATE(266), + [sym_iter_register_command] = STATE(266), + [sym_iter_step_command] = STATE(266), + [sym_tmp_seek_command] = STATE(266), + [sym_tmp_blksz_command] = STATE(266), + [sym_tmp_fromto_command] = STATE(266), + [sym_tmp_arch_command] = STATE(266), + [sym_tmp_bits_command] = STATE(266), + [sym_tmp_nthi_command] = STATE(266), + [sym_tmp_eval_command] = STATE(266), + [sym_tmp_fs_command] = STATE(266), + [sym_tmp_reli_command] = STATE(266), + [sym_tmp_kuery_command] = STATE(266), + [sym_tmp_fd_command] = STATE(266), + [sym_tmp_reg_command] = STATE(266), + [sym_tmp_file_command] = STATE(266), + [sym_tmp_string_command] = STATE(266), + [sym_tmp_value_command] = STATE(266), + [sym_tmp_hex_command] = STATE(266), + [sym_number_command] = STATE(266), + [sym_help_command] = STATE(266), + [sym_arged_command] = STATE(266), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(266), + [sym_Cf_cmd] = STATE(266), + [sym_pf_new_cmd] = STATE(266), + [sym_pf_dot_cmd] = STATE(266), + [sym_pf_cmd] = STATE(266), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(266), + [sym_redirect_command] = STATE(428), + [sym__dec_number] = STATE(2), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_RPAREN] = ACTIONS(101), + [anon_sym_0] = ACTIONS(9), + [aux_sym_number_command_token1] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym__interpret_command_token1] = ACTIONS(15), + [aux_sym__interpret_command_token3] = ACTIONS(17), + [anon_sym_DOT_BANG] = ACTIONS(19), + [anon_sym_DOT_LPAREN] = ACTIONS(21), + [anon_sym_DOT_SLASH] = ACTIONS(23), + [anon_sym_pfo] = ACTIONS(25), + [anon_sym_Cf] = ACTIONS(27), + [sym_pf_dot_cmd_identifier] = ACTIONS(29), + [sym_pf_dot_full_cmd_identifier] = ACTIONS(31), + [aux_sym_pf_cmd_token1] = ACTIONS(33), + [anon_sym_PERCENT] = ACTIONS(35), + [anon_sym_env] = ACTIONS(35), + [anon_sym_DOT_DOT_DOT] = ACTIONS(37), + [sym_system_identifier] = ACTIONS(39), + [sym_question_mark_identifier] = ACTIONS(41), + [sym_pointer_identifier] = ACTIONS(43), + [sym_macro_identifier] = ACTIONS(45), + [anon_sym_SEMI] = ACTIONS(101), + [aux_sym__dec_number_token1] = ACTIONS(49), + [aux_sym__dec_number_token2] = ACTIONS(51), + [sym__comment] = ACTIONS(3), + [sym_cmd_identifier] = ACTIONS(53), + [sym__help_command] = ACTIONS(55), + }, + [35] = { + [sym__command] = STATE(423), + [sym_legacy_quoted_command] = STATE(265), + [sym__simple_command] = STATE(265), + [sym__tmp_command] = STATE(265), + [sym__iter_command] = STATE(265), + [sym__pipe_command] = STATE(265), + [sym_grep_command] = STATE(265), + [sym_html_disable_command] = STATE(265), + [sym_html_enable_command] = STATE(265), + [sym_pipe_command] = STATE(265), + [sym_iter_file_lines_command] = STATE(265), + [sym_iter_offsets_command] = STATE(265), + [sym_iter_offsetssizes_command] = STATE(265), + [sym_iter_hit_command] = STATE(265), + [sym_iter_interpret_command] = STATE(265), + [sym_iter_interpret_offsetssizes_command] = STATE(265), + [sym_iter_comment_command] = STATE(265), + [sym_iter_dbta_command] = STATE(265), + [sym_iter_dbtb_command] = STATE(265), + [sym_iter_dbts_command] = STATE(265), + [sym_iter_threads_command] = STATE(265), + [sym_iter_bbs_command] = STATE(265), + [sym_iter_instrs_command] = STATE(265), + [sym_iter_import_command] = STATE(265), + [sym_iter_sections_command] = STATE(265), + [sym_iter_segments_command] = STATE(265), + [sym_iter_symbol_command] = STATE(265), + [sym_iter_string_command] = STATE(265), + [sym_iter_flags_command] = STATE(265), + [sym_iter_function_command] = STATE(265), + [sym_iter_iomap_command] = STATE(265), + [sym_iter_dbgmap_command] = STATE(265), + [sym_iter_register_command] = STATE(265), + [sym_iter_step_command] = STATE(265), + [sym_tmp_seek_command] = STATE(265), + [sym_tmp_blksz_command] = STATE(265), + [sym_tmp_fromto_command] = STATE(265), + [sym_tmp_arch_command] = STATE(265), + [sym_tmp_bits_command] = STATE(265), + [sym_tmp_nthi_command] = STATE(265), + [sym_tmp_eval_command] = STATE(265), + [sym_tmp_fs_command] = STATE(265), + [sym_tmp_reli_command] = STATE(265), + [sym_tmp_kuery_command] = STATE(265), + [sym_tmp_fd_command] = STATE(265), + [sym_tmp_reg_command] = STATE(265), + [sym_tmp_file_command] = STATE(265), + [sym_tmp_string_command] = STATE(265), + [sym_tmp_value_command] = STATE(265), + [sym_tmp_hex_command] = STATE(265), + [sym_number_command] = STATE(265), + [sym_help_command] = STATE(265), + [sym_arged_command] = STATE(265), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(256), - [sym_Cf_cmd] = STATE(256), - [sym_pf_new_cmd] = STATE(256), - [sym_pf_dot_cmd] = STATE(256), - [sym_pf_cmd] = STATE(256), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(256), - [sym_redirect_command] = STATE(419), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(265), + [sym_Cf_cmd] = STATE(265), + [sym_pf_new_cmd] = STATE(265), + [sym_pf_dot_cmd] = STATE(265), + [sym_pf_cmd] = STATE(265), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(91), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(265), + [sym_redirect_command] = STATE(423), + [sym__dec_number] = STATE(5), + [aux_sym__commands_singleline_repeat1] = STATE(274), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_0] = ACTIONS(9), + [aux_sym_number_command_token1] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(65), + [aux_sym__interpret_command_token1] = ACTIONS(67), + [aux_sym__interpret_command_token3] = ACTIONS(69), + [anon_sym_DOT_BANG] = ACTIONS(19), + [anon_sym_DOT_LPAREN] = ACTIONS(21), + [anon_sym_DOT_SLASH] = ACTIONS(23), + [anon_sym_pfo] = ACTIONS(71), + [anon_sym_Cf] = ACTIONS(73), + [sym_pf_dot_cmd_identifier] = ACTIONS(75), + [sym_pf_dot_full_cmd_identifier] = ACTIONS(77), + [aux_sym_pf_cmd_token1] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(35), + [anon_sym_env] = ACTIONS(35), + [anon_sym_DOT_DOT_DOT] = ACTIONS(37), + [sym_system_identifier] = ACTIONS(81), + [sym_question_mark_identifier] = ACTIONS(83), + [sym_pointer_identifier] = ACTIONS(43), + [sym_macro_identifier] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(103), + [aux_sym__dec_number_token1] = ACTIONS(49), + [aux_sym__dec_number_token2] = ACTIONS(51), + [sym__comment] = ACTIONS(3), + [sym_cmd_identifier] = ACTIONS(87), + [sym__help_command] = ACTIONS(89), + }, + [36] = { + [sym__command] = STATE(449), + [sym_legacy_quoted_command] = STATE(266), + [sym__simple_command] = STATE(266), + [sym__tmp_command] = STATE(266), + [sym__iter_command] = STATE(266), + [sym__pipe_command] = STATE(266), + [sym_grep_command] = STATE(266), + [sym_html_disable_command] = STATE(266), + [sym_html_enable_command] = STATE(266), + [sym_pipe_command] = STATE(266), + [sym_iter_file_lines_command] = STATE(266), + [sym_iter_offsets_command] = STATE(266), + [sym_iter_offsetssizes_command] = STATE(266), + [sym_iter_hit_command] = STATE(266), + [sym_iter_interpret_command] = STATE(266), + [sym_iter_interpret_offsetssizes_command] = STATE(266), + [sym_iter_comment_command] = STATE(266), + [sym_iter_dbta_command] = STATE(266), + [sym_iter_dbtb_command] = STATE(266), + [sym_iter_dbts_command] = STATE(266), + [sym_iter_threads_command] = STATE(266), + [sym_iter_bbs_command] = STATE(266), + [sym_iter_instrs_command] = STATE(266), + [sym_iter_import_command] = STATE(266), + [sym_iter_sections_command] = STATE(266), + [sym_iter_segments_command] = STATE(266), + [sym_iter_symbol_command] = STATE(266), + [sym_iter_string_command] = STATE(266), + [sym_iter_flags_command] = STATE(266), + [sym_iter_function_command] = STATE(266), + [sym_iter_iomap_command] = STATE(266), + [sym_iter_dbgmap_command] = STATE(266), + [sym_iter_register_command] = STATE(266), + [sym_iter_step_command] = STATE(266), + [sym_tmp_seek_command] = STATE(266), + [sym_tmp_blksz_command] = STATE(266), + [sym_tmp_fromto_command] = STATE(266), + [sym_tmp_arch_command] = STATE(266), + [sym_tmp_bits_command] = STATE(266), + [sym_tmp_nthi_command] = STATE(266), + [sym_tmp_eval_command] = STATE(266), + [sym_tmp_fs_command] = STATE(266), + [sym_tmp_reli_command] = STATE(266), + [sym_tmp_kuery_command] = STATE(266), + [sym_tmp_fd_command] = STATE(266), + [sym_tmp_reg_command] = STATE(266), + [sym_tmp_file_command] = STATE(266), + [sym_tmp_string_command] = STATE(266), + [sym_tmp_value_command] = STATE(266), + [sym_tmp_hex_command] = STATE(266), + [sym_number_command] = STATE(266), + [sym_help_command] = STATE(266), + [sym_arged_command] = STATE(266), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(266), + [sym_Cf_cmd] = STATE(266), + [sym_pf_new_cmd] = STATE(266), + [sym_pf_dot_cmd] = STATE(266), + [sym_pf_cmd] = STATE(266), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(266), + [sym_redirect_command] = STATE(449), [sym__dec_number] = STATE(2), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_0] = ACTIONS(9), @@ -8759,79 +8835,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__help_command] = ACTIONS(55), }, [37] = { - [sym__command] = STATE(436), - [sym_legacy_quoted_command] = STATE(256), - [sym__simple_command] = STATE(256), - [sym__tmp_command] = STATE(256), - [sym__iter_command] = STATE(256), - [sym__pipe_command] = STATE(256), - [sym_grep_command] = STATE(256), - [sym_html_disable_command] = STATE(256), - [sym_html_enable_command] = STATE(256), - [sym_pipe_command] = STATE(256), - [sym_iter_file_lines_command] = STATE(256), - [sym_iter_offsets_command] = STATE(256), - [sym_iter_offsetssizes_command] = STATE(256), - [sym_iter_hit_command] = STATE(256), - [sym_iter_interpret_command] = STATE(256), - [sym_iter_interpret_offsetssizes_command] = STATE(256), - [sym_iter_comment_command] = STATE(256), - [sym_iter_dbta_command] = STATE(256), - [sym_iter_dbtb_command] = STATE(256), - [sym_iter_dbts_command] = STATE(256), - [sym_iter_threads_command] = STATE(256), - [sym_iter_bbs_command] = STATE(256), - [sym_iter_instrs_command] = STATE(256), - [sym_iter_import_command] = STATE(256), - [sym_iter_sections_command] = STATE(256), - [sym_iter_segments_command] = STATE(256), - [sym_iter_symbol_command] = STATE(256), - [sym_iter_string_command] = STATE(256), - [sym_iter_flags_command] = STATE(256), - [sym_iter_function_command] = STATE(256), - [sym_iter_iomap_command] = STATE(256), - [sym_iter_dbgmap_command] = STATE(256), - [sym_iter_register_command] = STATE(256), - [sym_iter_step_command] = STATE(256), - [sym_tmp_seek_command] = STATE(256), - [sym_tmp_blksz_command] = STATE(256), - [sym_tmp_fromto_command] = STATE(256), - [sym_tmp_arch_command] = STATE(256), - [sym_tmp_bits_command] = STATE(256), - [sym_tmp_nthi_command] = STATE(256), - [sym_tmp_eval_command] = STATE(256), - [sym_tmp_fs_command] = STATE(256), - [sym_tmp_reli_command] = STATE(256), - [sym_tmp_kuery_command] = STATE(256), - [sym_tmp_fd_command] = STATE(256), - [sym_tmp_reg_command] = STATE(256), - [sym_tmp_file_command] = STATE(256), - [sym_tmp_string_command] = STATE(256), - [sym_tmp_value_command] = STATE(256), - [sym_tmp_hex_command] = STATE(256), - [sym_number_command] = STATE(256), - [sym_help_command] = STATE(256), - [sym_arged_command] = STATE(256), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(256), - [sym_Cf_cmd] = STATE(256), - [sym_pf_new_cmd] = STATE(256), - [sym_pf_dot_cmd] = STATE(256), - [sym_pf_cmd] = STATE(256), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(256), - [sym_redirect_command] = STATE(436), + [sym__command] = STATE(437), + [sym_legacy_quoted_command] = STATE(266), + [sym__simple_command] = STATE(266), + [sym__tmp_command] = STATE(266), + [sym__iter_command] = STATE(266), + [sym__pipe_command] = STATE(266), + [sym_grep_command] = STATE(266), + [sym_html_disable_command] = STATE(266), + [sym_html_enable_command] = STATE(266), + [sym_pipe_command] = STATE(266), + [sym_iter_file_lines_command] = STATE(266), + [sym_iter_offsets_command] = STATE(266), + [sym_iter_offsetssizes_command] = STATE(266), + [sym_iter_hit_command] = STATE(266), + [sym_iter_interpret_command] = STATE(266), + [sym_iter_interpret_offsetssizes_command] = STATE(266), + [sym_iter_comment_command] = STATE(266), + [sym_iter_dbta_command] = STATE(266), + [sym_iter_dbtb_command] = STATE(266), + [sym_iter_dbts_command] = STATE(266), + [sym_iter_threads_command] = STATE(266), + [sym_iter_bbs_command] = STATE(266), + [sym_iter_instrs_command] = STATE(266), + [sym_iter_import_command] = STATE(266), + [sym_iter_sections_command] = STATE(266), + [sym_iter_segments_command] = STATE(266), + [sym_iter_symbol_command] = STATE(266), + [sym_iter_string_command] = STATE(266), + [sym_iter_flags_command] = STATE(266), + [sym_iter_function_command] = STATE(266), + [sym_iter_iomap_command] = STATE(266), + [sym_iter_dbgmap_command] = STATE(266), + [sym_iter_register_command] = STATE(266), + [sym_iter_step_command] = STATE(266), + [sym_tmp_seek_command] = STATE(266), + [sym_tmp_blksz_command] = STATE(266), + [sym_tmp_fromto_command] = STATE(266), + [sym_tmp_arch_command] = STATE(266), + [sym_tmp_bits_command] = STATE(266), + [sym_tmp_nthi_command] = STATE(266), + [sym_tmp_eval_command] = STATE(266), + [sym_tmp_fs_command] = STATE(266), + [sym_tmp_reli_command] = STATE(266), + [sym_tmp_kuery_command] = STATE(266), + [sym_tmp_fd_command] = STATE(266), + [sym_tmp_reg_command] = STATE(266), + [sym_tmp_file_command] = STATE(266), + [sym_tmp_string_command] = STATE(266), + [sym_tmp_value_command] = STATE(266), + [sym_tmp_hex_command] = STATE(266), + [sym_number_command] = STATE(266), + [sym_help_command] = STATE(266), + [sym_arged_command] = STATE(266), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(266), + [sym_Cf_cmd] = STATE(266), + [sym_pf_new_cmd] = STATE(266), + [sym_pf_dot_cmd] = STATE(266), + [sym_pf_cmd] = STATE(266), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(266), + [sym_redirect_command] = STATE(437), [sym__dec_number] = STATE(2), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_0] = ACTIONS(9), @@ -8862,77 +8938,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [38] = { [sym__command] = STATE(432), - [sym_legacy_quoted_command] = STATE(256), - [sym__simple_command] = STATE(256), - [sym__tmp_command] = STATE(256), - [sym__iter_command] = STATE(256), - [sym__pipe_command] = STATE(256), - [sym_grep_command] = STATE(256), - [sym_html_disable_command] = STATE(256), - [sym_html_enable_command] = STATE(256), - [sym_pipe_command] = STATE(256), - [sym_iter_file_lines_command] = STATE(256), - [sym_iter_offsets_command] = STATE(256), - [sym_iter_offsetssizes_command] = STATE(256), - [sym_iter_hit_command] = STATE(256), - [sym_iter_interpret_command] = STATE(256), - [sym_iter_interpret_offsetssizes_command] = STATE(256), - [sym_iter_comment_command] = STATE(256), - [sym_iter_dbta_command] = STATE(256), - [sym_iter_dbtb_command] = STATE(256), - [sym_iter_dbts_command] = STATE(256), - [sym_iter_threads_command] = STATE(256), - [sym_iter_bbs_command] = STATE(256), - [sym_iter_instrs_command] = STATE(256), - [sym_iter_import_command] = STATE(256), - [sym_iter_sections_command] = STATE(256), - [sym_iter_segments_command] = STATE(256), - [sym_iter_symbol_command] = STATE(256), - [sym_iter_string_command] = STATE(256), - [sym_iter_flags_command] = STATE(256), - [sym_iter_function_command] = STATE(256), - [sym_iter_iomap_command] = STATE(256), - [sym_iter_dbgmap_command] = STATE(256), - [sym_iter_register_command] = STATE(256), - [sym_iter_step_command] = STATE(256), - [sym_tmp_seek_command] = STATE(256), - [sym_tmp_blksz_command] = STATE(256), - [sym_tmp_fromto_command] = STATE(256), - [sym_tmp_arch_command] = STATE(256), - [sym_tmp_bits_command] = STATE(256), - [sym_tmp_nthi_command] = STATE(256), - [sym_tmp_eval_command] = STATE(256), - [sym_tmp_fs_command] = STATE(256), - [sym_tmp_reli_command] = STATE(256), - [sym_tmp_kuery_command] = STATE(256), - [sym_tmp_fd_command] = STATE(256), - [sym_tmp_reg_command] = STATE(256), - [sym_tmp_file_command] = STATE(256), - [sym_tmp_string_command] = STATE(256), - [sym_tmp_value_command] = STATE(256), - [sym_tmp_hex_command] = STATE(256), - [sym_number_command] = STATE(256), - [sym_help_command] = STATE(256), - [sym_arged_command] = STATE(256), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(256), - [sym_Cf_cmd] = STATE(256), - [sym_pf_new_cmd] = STATE(256), - [sym_pf_dot_cmd] = STATE(256), - [sym_pf_cmd] = STATE(256), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(256), + [sym_legacy_quoted_command] = STATE(266), + [sym__simple_command] = STATE(266), + [sym__tmp_command] = STATE(266), + [sym__iter_command] = STATE(266), + [sym__pipe_command] = STATE(266), + [sym_grep_command] = STATE(266), + [sym_html_disable_command] = STATE(266), + [sym_html_enable_command] = STATE(266), + [sym_pipe_command] = STATE(266), + [sym_iter_file_lines_command] = STATE(266), + [sym_iter_offsets_command] = STATE(266), + [sym_iter_offsetssizes_command] = STATE(266), + [sym_iter_hit_command] = STATE(266), + [sym_iter_interpret_command] = STATE(266), + [sym_iter_interpret_offsetssizes_command] = STATE(266), + [sym_iter_comment_command] = STATE(266), + [sym_iter_dbta_command] = STATE(266), + [sym_iter_dbtb_command] = STATE(266), + [sym_iter_dbts_command] = STATE(266), + [sym_iter_threads_command] = STATE(266), + [sym_iter_bbs_command] = STATE(266), + [sym_iter_instrs_command] = STATE(266), + [sym_iter_import_command] = STATE(266), + [sym_iter_sections_command] = STATE(266), + [sym_iter_segments_command] = STATE(266), + [sym_iter_symbol_command] = STATE(266), + [sym_iter_string_command] = STATE(266), + [sym_iter_flags_command] = STATE(266), + [sym_iter_function_command] = STATE(266), + [sym_iter_iomap_command] = STATE(266), + [sym_iter_dbgmap_command] = STATE(266), + [sym_iter_register_command] = STATE(266), + [sym_iter_step_command] = STATE(266), + [sym_tmp_seek_command] = STATE(266), + [sym_tmp_blksz_command] = STATE(266), + [sym_tmp_fromto_command] = STATE(266), + [sym_tmp_arch_command] = STATE(266), + [sym_tmp_bits_command] = STATE(266), + [sym_tmp_nthi_command] = STATE(266), + [sym_tmp_eval_command] = STATE(266), + [sym_tmp_fs_command] = STATE(266), + [sym_tmp_reli_command] = STATE(266), + [sym_tmp_kuery_command] = STATE(266), + [sym_tmp_fd_command] = STATE(266), + [sym_tmp_reg_command] = STATE(266), + [sym_tmp_file_command] = STATE(266), + [sym_tmp_string_command] = STATE(266), + [sym_tmp_value_command] = STATE(266), + [sym_tmp_hex_command] = STATE(266), + [sym_number_command] = STATE(266), + [sym_help_command] = STATE(266), + [sym_arged_command] = STATE(266), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(266), + [sym_Cf_cmd] = STATE(266), + [sym_pf_new_cmd] = STATE(266), + [sym_pf_dot_cmd] = STATE(266), + [sym_pf_cmd] = STATE(266), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(266), [sym_redirect_command] = STATE(432), [sym__dec_number] = STATE(2), [anon_sym_DQUOTE] = ACTIONS(7), @@ -8963,106 +9039,206 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__help_command] = ACTIONS(55), }, [39] = { - [sym_legacy_quoted_command] = STATE(253), - [sym__simple_command] = STATE(253), - [sym__tmp_command] = STATE(253), - [sym__iter_command] = STATE(253), - [sym__pipe_command] = STATE(253), - [sym_grep_command] = STATE(253), - [sym_html_disable_command] = STATE(253), - [sym_html_enable_command] = STATE(253), - [sym_pipe_command] = STATE(253), - [sym_iter_file_lines_command] = STATE(253), - [sym_iter_offsets_command] = STATE(253), - [sym_iter_offsetssizes_command] = STATE(253), - [sym_iter_hit_command] = STATE(253), - [sym_iter_interpret_command] = STATE(253), - [sym_iter_interpret_offsetssizes_command] = STATE(253), - [sym_iter_comment_command] = STATE(253), - [sym_iter_dbta_command] = STATE(253), - [sym_iter_dbtb_command] = STATE(253), - [sym_iter_dbts_command] = STATE(253), - [sym_iter_threads_command] = STATE(253), - [sym_iter_bbs_command] = STATE(253), - [sym_iter_instrs_command] = STATE(253), - [sym_iter_import_command] = STATE(253), - [sym_iter_sections_command] = STATE(253), - [sym_iter_segments_command] = STATE(253), - [sym_iter_symbol_command] = STATE(253), - [sym_iter_string_command] = STATE(253), - [sym_iter_flags_command] = STATE(253), - [sym_iter_function_command] = STATE(253), - [sym_iter_iomap_command] = STATE(253), - [sym_iter_dbgmap_command] = STATE(253), - [sym_iter_register_command] = STATE(253), - [sym_iter_step_command] = STATE(253), - [sym_tmp_seek_command] = STATE(253), - [sym_tmp_blksz_command] = STATE(253), - [sym_tmp_fromto_command] = STATE(253), - [sym_tmp_arch_command] = STATE(253), - [sym_tmp_bits_command] = STATE(253), - [sym_tmp_nthi_command] = STATE(253), - [sym_tmp_eval_command] = STATE(253), - [sym_tmp_fs_command] = STATE(253), - [sym_tmp_reli_command] = STATE(253), - [sym_tmp_kuery_command] = STATE(253), - [sym_tmp_fd_command] = STATE(253), - [sym_tmp_reg_command] = STATE(253), - [sym_tmp_file_command] = STATE(253), - [sym_tmp_string_command] = STATE(253), - [sym_tmp_value_command] = STATE(253), - [sym_tmp_hex_command] = STATE(253), - [sym_number_command] = STATE(253), - [sym_help_command] = STATE(253), - [sym_arged_command] = STATE(253), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), + [sym_legacy_quoted_command] = STATE(271), + [sym__simple_command] = STATE(271), + [sym__tmp_command] = STATE(271), + [sym__iter_command] = STATE(271), + [sym__pipe_command] = STATE(271), + [sym_grep_command] = STATE(271), + [sym_html_disable_command] = STATE(271), + [sym_html_enable_command] = STATE(271), + [sym_pipe_command] = STATE(271), + [sym_iter_file_lines_command] = STATE(271), + [sym_iter_offsets_command] = STATE(271), + [sym_iter_offsetssizes_command] = STATE(271), + [sym_iter_hit_command] = STATE(271), + [sym_iter_interpret_command] = STATE(271), + [sym_iter_interpret_offsetssizes_command] = STATE(271), + [sym_iter_comment_command] = STATE(271), + [sym_iter_dbta_command] = STATE(271), + [sym_iter_dbtb_command] = STATE(271), + [sym_iter_dbts_command] = STATE(271), + [sym_iter_threads_command] = STATE(271), + [sym_iter_bbs_command] = STATE(271), + [sym_iter_instrs_command] = STATE(271), + [sym_iter_import_command] = STATE(271), + [sym_iter_sections_command] = STATE(271), + [sym_iter_segments_command] = STATE(271), + [sym_iter_symbol_command] = STATE(271), + [sym_iter_string_command] = STATE(271), + [sym_iter_flags_command] = STATE(271), + [sym_iter_function_command] = STATE(271), + [sym_iter_iomap_command] = STATE(271), + [sym_iter_dbgmap_command] = STATE(271), + [sym_iter_register_command] = STATE(271), + [sym_iter_step_command] = STATE(271), + [sym_tmp_seek_command] = STATE(271), + [sym_tmp_blksz_command] = STATE(271), + [sym_tmp_fromto_command] = STATE(271), + [sym_tmp_arch_command] = STATE(271), + [sym_tmp_bits_command] = STATE(271), + [sym_tmp_nthi_command] = STATE(271), + [sym_tmp_eval_command] = STATE(271), + [sym_tmp_fs_command] = STATE(271), + [sym_tmp_reli_command] = STATE(271), + [sym_tmp_kuery_command] = STATE(271), + [sym_tmp_fd_command] = STATE(271), + [sym_tmp_reg_command] = STATE(271), + [sym_tmp_file_command] = STATE(271), + [sym_tmp_string_command] = STATE(271), + [sym_tmp_value_command] = STATE(271), + [sym_tmp_hex_command] = STATE(271), + [sym_number_command] = STATE(271), + [sym_help_command] = STATE(271), + [sym_arged_command] = STATE(271), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(253), - [sym_Cf_cmd] = STATE(253), - [sym_pf_new_cmd] = STATE(253), - [sym_pf_dot_cmd] = STATE(253), - [sym_pf_cmd] = STATE(253), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(253), - [sym__dec_number] = STATE(2), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(271), + [sym_Cf_cmd] = STATE(271), + [sym_pf_new_cmd] = STATE(271), + [sym_pf_dot_cmd] = STATE(271), + [sym_pf_cmd] = STATE(271), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(91), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(271), + [sym__dec_number] = STATE(5), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_0] = ACTIONS(9), [aux_sym_number_command_token1] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [aux_sym__interpret_command_token1] = ACTIONS(15), - [aux_sym__interpret_command_token3] = ACTIONS(17), + [anon_sym_DOT] = ACTIONS(65), + [aux_sym__interpret_command_token1] = ACTIONS(67), + [aux_sym__interpret_command_token3] = ACTIONS(69), [anon_sym_DOT_BANG] = ACTIONS(19), [anon_sym_DOT_LPAREN] = ACTIONS(21), [anon_sym_DOT_SLASH] = ACTIONS(23), - [anon_sym_pfo] = ACTIONS(25), - [anon_sym_Cf] = ACTIONS(27), - [sym_pf_dot_cmd_identifier] = ACTIONS(29), - [sym_pf_dot_full_cmd_identifier] = ACTIONS(31), - [aux_sym_pf_cmd_token1] = ACTIONS(33), + [anon_sym_pfo] = ACTIONS(71), + [anon_sym_Cf] = ACTIONS(73), + [sym_pf_dot_cmd_identifier] = ACTIONS(75), + [sym_pf_dot_full_cmd_identifier] = ACTIONS(77), + [aux_sym_pf_cmd_token1] = ACTIONS(79), [anon_sym_PERCENT] = ACTIONS(35), [anon_sym_env] = ACTIONS(35), [anon_sym_DOT_DOT_DOT] = ACTIONS(37), - [sym_system_identifier] = ACTIONS(39), - [sym_question_mark_identifier] = ACTIONS(41), + [sym_system_identifier] = ACTIONS(81), + [sym_question_mark_identifier] = ACTIONS(83), [sym_pointer_identifier] = ACTIONS(43), - [sym_macro_identifier] = ACTIONS(45), + [sym_macro_identifier] = ACTIONS(85), [aux_sym__dec_number_token1] = ACTIONS(49), [aux_sym__dec_number_token2] = ACTIONS(51), [sym__comment] = ACTIONS(3), - [sym_cmd_identifier] = ACTIONS(53), - [sym__help_command] = ACTIONS(55), + [sym_cmd_identifier] = ACTIONS(87), + [sym__help_command] = ACTIONS(89), }, [40] = { + [sym_legacy_quoted_command] = STATE(272), + [sym__simple_command] = STATE(272), + [sym__tmp_command] = STATE(272), + [sym__iter_command] = STATE(272), + [sym__pipe_command] = STATE(272), + [sym_grep_command] = STATE(272), + [sym_html_disable_command] = STATE(272), + [sym_html_enable_command] = STATE(272), + [sym_pipe_command] = STATE(272), + [sym_iter_file_lines_command] = STATE(272), + [sym_iter_offsets_command] = STATE(272), + [sym_iter_offsetssizes_command] = STATE(272), + [sym_iter_hit_command] = STATE(272), + [sym_iter_interpret_command] = STATE(272), + [sym_iter_interpret_offsetssizes_command] = STATE(272), + [sym_iter_comment_command] = STATE(272), + [sym_iter_dbta_command] = STATE(272), + [sym_iter_dbtb_command] = STATE(272), + [sym_iter_dbts_command] = STATE(272), + [sym_iter_threads_command] = STATE(272), + [sym_iter_bbs_command] = STATE(272), + [sym_iter_instrs_command] = STATE(272), + [sym_iter_import_command] = STATE(272), + [sym_iter_sections_command] = STATE(272), + [sym_iter_segments_command] = STATE(272), + [sym_iter_symbol_command] = STATE(272), + [sym_iter_string_command] = STATE(272), + [sym_iter_flags_command] = STATE(272), + [sym_iter_function_command] = STATE(272), + [sym_iter_iomap_command] = STATE(272), + [sym_iter_dbgmap_command] = STATE(272), + [sym_iter_register_command] = STATE(272), + [sym_iter_step_command] = STATE(272), + [sym_tmp_seek_command] = STATE(272), + [sym_tmp_blksz_command] = STATE(272), + [sym_tmp_fromto_command] = STATE(272), + [sym_tmp_arch_command] = STATE(272), + [sym_tmp_bits_command] = STATE(272), + [sym_tmp_nthi_command] = STATE(272), + [sym_tmp_eval_command] = STATE(272), + [sym_tmp_fs_command] = STATE(272), + [sym_tmp_reli_command] = STATE(272), + [sym_tmp_kuery_command] = STATE(272), + [sym_tmp_fd_command] = STATE(272), + [sym_tmp_reg_command] = STATE(272), + [sym_tmp_file_command] = STATE(272), + [sym_tmp_string_command] = STATE(272), + [sym_tmp_value_command] = STATE(272), + [sym_tmp_hex_command] = STATE(272), + [sym_number_command] = STATE(272), + [sym_help_command] = STATE(272), + [sym_arged_command] = STATE(272), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(281), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(272), + [sym_Cf_cmd] = STATE(272), + [sym_pf_new_cmd] = STATE(272), + [sym_pf_dot_cmd] = STATE(272), + [sym_pf_cmd] = STATE(272), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(91), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(272), + [sym__dec_number] = STATE(5), + [anon_sym_DQUOTE] = ACTIONS(7), + [anon_sym_0] = ACTIONS(9), + [aux_sym_number_command_token1] = ACTIONS(11), + [anon_sym_DOT] = ACTIONS(65), + [aux_sym__interpret_command_token1] = ACTIONS(67), + [aux_sym__interpret_command_token3] = ACTIONS(69), + [anon_sym_DOT_BANG] = ACTIONS(19), + [anon_sym_DOT_LPAREN] = ACTIONS(21), + [anon_sym_DOT_SLASH] = ACTIONS(23), + [anon_sym_pfo] = ACTIONS(71), + [anon_sym_Cf] = ACTIONS(73), + [sym_pf_dot_cmd_identifier] = ACTIONS(75), + [sym_pf_dot_full_cmd_identifier] = ACTIONS(77), + [aux_sym_pf_cmd_token1] = ACTIONS(79), + [anon_sym_PERCENT] = ACTIONS(35), + [anon_sym_env] = ACTIONS(35), + [anon_sym_DOT_DOT_DOT] = ACTIONS(37), + [sym_system_identifier] = ACTIONS(81), + [sym_question_mark_identifier] = ACTIONS(83), + [sym_pointer_identifier] = ACTIONS(43), + [sym_macro_identifier] = ACTIONS(85), + [aux_sym__dec_number_token1] = ACTIONS(49), + [aux_sym__dec_number_token2] = ACTIONS(51), + [sym__comment] = ACTIONS(3), + [sym_cmd_identifier] = ACTIONS(87), + [sym__help_command] = ACTIONS(89), + }, + [41] = { [sym_legacy_quoted_command] = STATE(263), [sym__simple_command] = STATE(263), [sym__tmp_command] = STATE(263), @@ -9115,125 +9291,25 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number_command] = STATE(263), [sym_help_command] = STATE(263), [sym_arged_command] = STATE(263), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(274), - [sym__pf_arged_command] = STATE(198), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), [sym__pf_commands] = STATE(263), [sym_Cf_cmd] = STATE(263), [sym_pf_new_cmd] = STATE(263), [sym_pf_dot_cmd] = STATE(263), [sym_pf_cmd] = STATE(263), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(90), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), [sym_repeat_command] = STATE(263), - [sym__dec_number] = STATE(5), - [anon_sym_DQUOTE] = ACTIONS(7), - [anon_sym_0] = ACTIONS(9), - [aux_sym_number_command_token1] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(65), - [aux_sym__interpret_command_token1] = ACTIONS(67), - [aux_sym__interpret_command_token3] = ACTIONS(69), - [anon_sym_DOT_BANG] = ACTIONS(19), - [anon_sym_DOT_LPAREN] = ACTIONS(21), - [anon_sym_DOT_SLASH] = ACTIONS(23), - [anon_sym_pfo] = ACTIONS(71), - [anon_sym_Cf] = ACTIONS(73), - [sym_pf_dot_cmd_identifier] = ACTIONS(75), - [sym_pf_dot_full_cmd_identifier] = ACTIONS(77), - [aux_sym_pf_cmd_token1] = ACTIONS(79), - [anon_sym_PERCENT] = ACTIONS(35), - [anon_sym_env] = ACTIONS(35), - [anon_sym_DOT_DOT_DOT] = ACTIONS(37), - [sym_system_identifier] = ACTIONS(81), - [sym_question_mark_identifier] = ACTIONS(83), - [sym_pointer_identifier] = ACTIONS(43), - [sym_macro_identifier] = ACTIONS(85), - [aux_sym__dec_number_token1] = ACTIONS(49), - [aux_sym__dec_number_token2] = ACTIONS(51), - [sym__comment] = ACTIONS(3), - [sym_cmd_identifier] = ACTIONS(87), - [sym__help_command] = ACTIONS(89), - }, - [41] = { - [sym_legacy_quoted_command] = STATE(254), - [sym__simple_command] = STATE(254), - [sym__tmp_command] = STATE(254), - [sym__iter_command] = STATE(254), - [sym__pipe_command] = STATE(254), - [sym_grep_command] = STATE(254), - [sym_html_disable_command] = STATE(254), - [sym_html_enable_command] = STATE(254), - [sym_pipe_command] = STATE(254), - [sym_iter_file_lines_command] = STATE(254), - [sym_iter_offsets_command] = STATE(254), - [sym_iter_offsetssizes_command] = STATE(254), - [sym_iter_hit_command] = STATE(254), - [sym_iter_interpret_command] = STATE(254), - [sym_iter_interpret_offsetssizes_command] = STATE(254), - [sym_iter_comment_command] = STATE(254), - [sym_iter_dbta_command] = STATE(254), - [sym_iter_dbtb_command] = STATE(254), - [sym_iter_dbts_command] = STATE(254), - [sym_iter_threads_command] = STATE(254), - [sym_iter_bbs_command] = STATE(254), - [sym_iter_instrs_command] = STATE(254), - [sym_iter_import_command] = STATE(254), - [sym_iter_sections_command] = STATE(254), - [sym_iter_segments_command] = STATE(254), - [sym_iter_symbol_command] = STATE(254), - [sym_iter_string_command] = STATE(254), - [sym_iter_flags_command] = STATE(254), - [sym_iter_function_command] = STATE(254), - [sym_iter_iomap_command] = STATE(254), - [sym_iter_dbgmap_command] = STATE(254), - [sym_iter_register_command] = STATE(254), - [sym_iter_step_command] = STATE(254), - [sym_tmp_seek_command] = STATE(254), - [sym_tmp_blksz_command] = STATE(254), - [sym_tmp_fromto_command] = STATE(254), - [sym_tmp_arch_command] = STATE(254), - [sym_tmp_bits_command] = STATE(254), - [sym_tmp_nthi_command] = STATE(254), - [sym_tmp_eval_command] = STATE(254), - [sym_tmp_fs_command] = STATE(254), - [sym_tmp_reli_command] = STATE(254), - [sym_tmp_kuery_command] = STATE(254), - [sym_tmp_fd_command] = STATE(254), - [sym_tmp_reg_command] = STATE(254), - [sym_tmp_file_command] = STATE(254), - [sym_tmp_string_command] = STATE(254), - [sym_tmp_value_command] = STATE(254), - [sym_tmp_hex_command] = STATE(254), - [sym_number_command] = STATE(254), - [sym_help_command] = STATE(254), - [sym_arged_command] = STATE(254), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(281), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(254), - [sym_Cf_cmd] = STATE(254), - [sym_pf_new_cmd] = STATE(254), - [sym_pf_dot_cmd] = STATE(254), - [sym_pf_cmd] = STATE(254), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(73), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(254), [sym__dec_number] = STATE(2), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_0] = ACTIONS(9), @@ -9263,104 +9339,104 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__help_command] = ACTIONS(55), }, [42] = { - [sym_legacy_quoted_command] = STATE(262), - [sym__simple_command] = STATE(262), - [sym__tmp_command] = STATE(262), - [sym__iter_command] = STATE(262), - [sym__pipe_command] = STATE(262), - [sym_grep_command] = STATE(262), - [sym_html_disable_command] = STATE(262), - [sym_html_enable_command] = STATE(262), - [sym_pipe_command] = STATE(262), - [sym_iter_file_lines_command] = STATE(262), - [sym_iter_offsets_command] = STATE(262), - [sym_iter_offsetssizes_command] = STATE(262), - [sym_iter_hit_command] = STATE(262), - [sym_iter_interpret_command] = STATE(262), - [sym_iter_interpret_offsetssizes_command] = STATE(262), - [sym_iter_comment_command] = STATE(262), - [sym_iter_dbta_command] = STATE(262), - [sym_iter_dbtb_command] = STATE(262), - [sym_iter_dbts_command] = STATE(262), - [sym_iter_threads_command] = STATE(262), - [sym_iter_bbs_command] = STATE(262), - [sym_iter_instrs_command] = STATE(262), - [sym_iter_import_command] = STATE(262), - [sym_iter_sections_command] = STATE(262), - [sym_iter_segments_command] = STATE(262), - [sym_iter_symbol_command] = STATE(262), - [sym_iter_string_command] = STATE(262), - [sym_iter_flags_command] = STATE(262), - [sym_iter_function_command] = STATE(262), - [sym_iter_iomap_command] = STATE(262), - [sym_iter_dbgmap_command] = STATE(262), - [sym_iter_register_command] = STATE(262), - [sym_iter_step_command] = STATE(262), - [sym_tmp_seek_command] = STATE(262), - [sym_tmp_blksz_command] = STATE(262), - [sym_tmp_fromto_command] = STATE(262), - [sym_tmp_arch_command] = STATE(262), - [sym_tmp_bits_command] = STATE(262), - [sym_tmp_nthi_command] = STATE(262), - [sym_tmp_eval_command] = STATE(262), - [sym_tmp_fs_command] = STATE(262), - [sym_tmp_reli_command] = STATE(262), - [sym_tmp_kuery_command] = STATE(262), - [sym_tmp_fd_command] = STATE(262), - [sym_tmp_reg_command] = STATE(262), - [sym_tmp_file_command] = STATE(262), - [sym_tmp_string_command] = STATE(262), - [sym_tmp_value_command] = STATE(262), - [sym_tmp_hex_command] = STATE(262), - [sym_number_command] = STATE(262), - [sym_help_command] = STATE(262), - [sym_arged_command] = STATE(262), - [sym__simple_arged_command_question] = STATE(198), - [sym__simple_arged_command] = STATE(198), - [sym__math_arged_command] = STATE(198), - [sym__pointer_arged_command] = STATE(198), - [sym__macro_arged_command] = STATE(198), - [sym__system_command] = STATE(198), - [sym__interpret_command] = STATE(198), - [sym__interpret_search_identifier] = STATE(274), - [sym__pf_arged_command] = STATE(198), - [sym__pf_commands] = STATE(262), - [sym_Cf_cmd] = STATE(262), - [sym_pf_new_cmd] = STATE(262), - [sym_pf_dot_cmd] = STATE(262), - [sym_pf_cmd] = STATE(262), - [sym__env_command] = STATE(198), - [sym__env_command_identifier] = STATE(90), - [sym__last_command] = STATE(198), - [sym_last_command_identifier] = STATE(212), - [sym_repeat_command] = STATE(262), - [sym__dec_number] = STATE(5), + [sym_legacy_quoted_command] = STATE(264), + [sym__simple_command] = STATE(264), + [sym__tmp_command] = STATE(264), + [sym__iter_command] = STATE(264), + [sym__pipe_command] = STATE(264), + [sym_grep_command] = STATE(264), + [sym_html_disable_command] = STATE(264), + [sym_html_enable_command] = STATE(264), + [sym_pipe_command] = STATE(264), + [sym_iter_file_lines_command] = STATE(264), + [sym_iter_offsets_command] = STATE(264), + [sym_iter_offsetssizes_command] = STATE(264), + [sym_iter_hit_command] = STATE(264), + [sym_iter_interpret_command] = STATE(264), + [sym_iter_interpret_offsetssizes_command] = STATE(264), + [sym_iter_comment_command] = STATE(264), + [sym_iter_dbta_command] = STATE(264), + [sym_iter_dbtb_command] = STATE(264), + [sym_iter_dbts_command] = STATE(264), + [sym_iter_threads_command] = STATE(264), + [sym_iter_bbs_command] = STATE(264), + [sym_iter_instrs_command] = STATE(264), + [sym_iter_import_command] = STATE(264), + [sym_iter_sections_command] = STATE(264), + [sym_iter_segments_command] = STATE(264), + [sym_iter_symbol_command] = STATE(264), + [sym_iter_string_command] = STATE(264), + [sym_iter_flags_command] = STATE(264), + [sym_iter_function_command] = STATE(264), + [sym_iter_iomap_command] = STATE(264), + [sym_iter_dbgmap_command] = STATE(264), + [sym_iter_register_command] = STATE(264), + [sym_iter_step_command] = STATE(264), + [sym_tmp_seek_command] = STATE(264), + [sym_tmp_blksz_command] = STATE(264), + [sym_tmp_fromto_command] = STATE(264), + [sym_tmp_arch_command] = STATE(264), + [sym_tmp_bits_command] = STATE(264), + [sym_tmp_nthi_command] = STATE(264), + [sym_tmp_eval_command] = STATE(264), + [sym_tmp_fs_command] = STATE(264), + [sym_tmp_reli_command] = STATE(264), + [sym_tmp_kuery_command] = STATE(264), + [sym_tmp_fd_command] = STATE(264), + [sym_tmp_reg_command] = STATE(264), + [sym_tmp_file_command] = STATE(264), + [sym_tmp_string_command] = STATE(264), + [sym_tmp_value_command] = STATE(264), + [sym_tmp_hex_command] = STATE(264), + [sym_number_command] = STATE(264), + [sym_help_command] = STATE(264), + [sym_arged_command] = STATE(264), + [sym__simple_arged_command_question] = STATE(184), + [sym__simple_arged_command] = STATE(185), + [sym__math_arged_command] = STATE(186), + [sym__pointer_arged_command] = STATE(193), + [sym__macro_arged_command] = STATE(197), + [sym__system_command] = STATE(199), + [sym__interpret_command] = STATE(210), + [sym__interpret_search_identifier] = STATE(288), + [sym__pf_arged_command] = STATE(212), + [sym__pf_commands] = STATE(264), + [sym_Cf_cmd] = STATE(264), + [sym_pf_new_cmd] = STATE(264), + [sym_pf_dot_cmd] = STATE(264), + [sym_pf_cmd] = STATE(264), + [sym__env_command] = STATE(213), + [sym__env_command_identifier] = STATE(70), + [sym__last_command] = STATE(214), + [sym_last_command_identifier] = STATE(215), + [sym_repeat_command] = STATE(264), + [sym__dec_number] = STATE(2), [anon_sym_DQUOTE] = ACTIONS(7), [anon_sym_0] = ACTIONS(9), [aux_sym_number_command_token1] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(65), - [aux_sym__interpret_command_token1] = ACTIONS(67), - [aux_sym__interpret_command_token3] = ACTIONS(69), + [anon_sym_DOT] = ACTIONS(13), + [aux_sym__interpret_command_token1] = ACTIONS(15), + [aux_sym__interpret_command_token3] = ACTIONS(17), [anon_sym_DOT_BANG] = ACTIONS(19), [anon_sym_DOT_LPAREN] = ACTIONS(21), [anon_sym_DOT_SLASH] = ACTIONS(23), - [anon_sym_pfo] = ACTIONS(71), - [anon_sym_Cf] = ACTIONS(73), - [sym_pf_dot_cmd_identifier] = ACTIONS(75), - [sym_pf_dot_full_cmd_identifier] = ACTIONS(77), - [aux_sym_pf_cmd_token1] = ACTIONS(79), + [anon_sym_pfo] = ACTIONS(25), + [anon_sym_Cf] = ACTIONS(27), + [sym_pf_dot_cmd_identifier] = ACTIONS(29), + [sym_pf_dot_full_cmd_identifier] = ACTIONS(31), + [aux_sym_pf_cmd_token1] = ACTIONS(33), [anon_sym_PERCENT] = ACTIONS(35), [anon_sym_env] = ACTIONS(35), [anon_sym_DOT_DOT_DOT] = ACTIONS(37), - [sym_system_identifier] = ACTIONS(81), - [sym_question_mark_identifier] = ACTIONS(83), + [sym_system_identifier] = ACTIONS(39), + [sym_question_mark_identifier] = ACTIONS(41), [sym_pointer_identifier] = ACTIONS(43), - [sym_macro_identifier] = ACTIONS(85), + [sym_macro_identifier] = ACTIONS(45), [aux_sym__dec_number_token1] = ACTIONS(49), [aux_sym__dec_number_token2] = ACTIONS(51), [sym__comment] = ACTIONS(3), - [sym_cmd_identifier] = ACTIONS(87), - [sym__help_command] = ACTIONS(89), + [sym_cmd_identifier] = ACTIONS(53), + [sym__help_command] = ACTIONS(55), }, [43] = { [ts_builtin_sym_end] = ACTIONS(105), @@ -9447,16 +9523,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(105), }, [44] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(56), - [sym_args] = STATE(241), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(56), + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(54), + [sym_args] = STATE(216), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(54), [ts_builtin_sym_end] = ACTIONS(109), [anon_sym_DQUOTE] = ACTIONS(111), [anon_sym_TILDE] = ACTIONS(109), @@ -9523,16 +9599,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(109), }, [45] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(56), - [sym_args] = STATE(203), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(56), + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(54), + [sym_args] = STATE(217), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(54), [ts_builtin_sym_end] = ACTIONS(127), [anon_sym_DQUOTE] = ACTIONS(111), [anon_sym_TILDE] = ACTIONS(127), @@ -9599,16 +9675,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(127), }, [46] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(56), - [sym_args] = STATE(224), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(56), + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(54), + [sym_args] = STATE(183), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(54), [ts_builtin_sym_end] = ACTIONS(131), [anon_sym_DQUOTE] = ACTIONS(111), [anon_sym_TILDE] = ACTIONS(131), @@ -9675,92 +9751,16 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(131), }, [47] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(56), - [sym_args] = STATE(248), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(56), - [ts_builtin_sym_end] = ACTIONS(127), - [anon_sym_DQUOTE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(129), - [anon_sym_PIPEH] = ACTIONS(127), - [anon_sym_AT_AT_DOT] = ACTIONS(127), - [anon_sym_AT_AT_EQ] = ACTIONS(127), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(127), - [anon_sym_AT_AT] = ACTIONS(129), - [anon_sym_AT_ATc_COLON] = ACTIONS(127), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(127), - [anon_sym_AT_ATC] = ACTIONS(127), - [anon_sym_AT_ATdbt] = ACTIONS(129), - [anon_sym_AT_ATdbta] = ACTIONS(127), - [anon_sym_AT_ATdbtb] = ACTIONS(127), - [anon_sym_AT_ATdbts] = ACTIONS(127), - [anon_sym_AT_ATt] = ACTIONS(127), - [anon_sym_AT_ATb] = ACTIONS(127), - [anon_sym_AT_ATi] = ACTIONS(129), - [anon_sym_AT_ATii] = ACTIONS(127), - [anon_sym_AT_ATiS] = ACTIONS(129), - [anon_sym_AT_ATiSS] = ACTIONS(127), - [anon_sym_AT_ATis] = ACTIONS(127), - [anon_sym_AT_ATiz] = ACTIONS(127), - [anon_sym_AT_ATf] = ACTIONS(127), - [anon_sym_AT_ATF] = ACTIONS(127), - [anon_sym_AT_ATom] = ACTIONS(127), - [anon_sym_AT_ATdm] = ACTIONS(127), - [anon_sym_AT_ATr] = ACTIONS(127), - [anon_sym_AT_ATs_COLON] = ACTIONS(127), - [anon_sym_AT] = ACTIONS(129), - [anon_sym_AT_BANG] = ACTIONS(127), - [anon_sym_AT_LPAREN] = ACTIONS(127), - [anon_sym_RPAREN] = ACTIONS(127), - [anon_sym_ATa_COLON] = ACTIONS(127), - [anon_sym_ATb_COLON] = ACTIONS(127), - [anon_sym_ATB_COLON] = ACTIONS(127), - [anon_sym_ATe_COLON] = ACTIONS(127), - [anon_sym_ATF_COLON] = ACTIONS(127), - [anon_sym_ATi_COLON] = ACTIONS(127), - [anon_sym_ATk_COLON] = ACTIONS(127), - [anon_sym_ATo_COLON] = ACTIONS(127), - [anon_sym_ATr_COLON] = ACTIONS(127), - [anon_sym_ATf_COLON] = ACTIONS(127), - [anon_sym_ATs_COLON] = ACTIONS(127), - [anon_sym_ATv_COLON] = ACTIONS(127), - [anon_sym_ATx_COLON] = ACTIONS(127), - [anon_sym_PIPE_DOT] = ACTIONS(127), - [anon_sym_DOLLAR] = ACTIONS(115), - [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_GT] = ACTIONS(129), - [anon_sym_GT_GT] = ACTIONS(127), - [sym_html_redirect_operator] = ACTIONS(129), - [sym_html_append_operator] = ACTIONS(127), - [anon_sym_COMMA] = ACTIONS(119), - [aux_sym_arg_identifier_token1] = ACTIONS(115), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(125), - [sym__comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(127), - [anon_sym_CR] = ACTIONS(127), - [sym_file_descriptor] = ACTIONS(127), - }, - [48] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(56), - [sym_args] = STATE(202), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(56), + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(54), + [sym_args] = STATE(182), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(54), [ts_builtin_sym_end] = ACTIONS(135), [anon_sym_DQUOTE] = ACTIONS(111), [anon_sym_TILDE] = ACTIONS(135), @@ -9826,38 +9826,38 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR] = ACTIONS(135), [sym_file_descriptor] = ACTIONS(135), }, - [49] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(56), - [sym_args] = STATE(245), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(56), + [48] = { + [sym_macro_content] = STATE(134), + [sym_macro_args] = STATE(256), + [sym__arg_with_paren] = STATE(319), + [sym__arg] = STATE(319), + [sym_arg] = STATE(275), + [sym_arg_identifier] = STATE(319), + [sym_double_quoted_arg] = STATE(319), + [sym_single_quoted_arg] = STATE(319), + [sym_cmd_substitution_arg] = STATE(319), + [sym_concatenation] = STATE(339), [ts_builtin_sym_end] = ACTIONS(139), - [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_DQUOTE] = ACTIONS(141), [anon_sym_TILDE] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), + [anon_sym_PIPE] = ACTIONS(143), [anon_sym_PIPEH] = ACTIONS(139), [anon_sym_AT_AT_DOT] = ACTIONS(139), [anon_sym_AT_AT_EQ] = ACTIONS(139), [anon_sym_AT_AT_AT_EQ] = ACTIONS(139), - [anon_sym_AT_AT] = ACTIONS(141), + [anon_sym_AT_AT] = ACTIONS(143), [anon_sym_AT_ATc_COLON] = ACTIONS(139), [anon_sym_AT_AT_ATc_COLON] = ACTIONS(139), [anon_sym_AT_ATC] = ACTIONS(139), - [anon_sym_AT_ATdbt] = ACTIONS(141), + [anon_sym_AT_ATdbt] = ACTIONS(143), [anon_sym_AT_ATdbta] = ACTIONS(139), [anon_sym_AT_ATdbtb] = ACTIONS(139), [anon_sym_AT_ATdbts] = ACTIONS(139), [anon_sym_AT_ATt] = ACTIONS(139), [anon_sym_AT_ATb] = ACTIONS(139), - [anon_sym_AT_ATi] = ACTIONS(141), + [anon_sym_AT_ATi] = ACTIONS(143), [anon_sym_AT_ATii] = ACTIONS(139), - [anon_sym_AT_ATiS] = ACTIONS(141), + [anon_sym_AT_ATiS] = ACTIONS(143), [anon_sym_AT_ATiSS] = ACTIONS(139), [anon_sym_AT_ATis] = ACTIONS(139), [anon_sym_AT_ATiz] = ACTIONS(139), @@ -9867,7 +9867,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_ATdm] = ACTIONS(139), [anon_sym_AT_ATr] = ACTIONS(139), [anon_sym_AT_ATs_COLON] = ACTIONS(139), - [anon_sym_AT] = ACTIONS(141), + [anon_sym_AT] = ACTIONS(143), [anon_sym_AT_BANG] = ACTIONS(139), [anon_sym_AT_LPAREN] = ACTIONS(139), [anon_sym_RPAREN] = ACTIONS(139), @@ -9885,262 +9885,338 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATv_COLON] = ACTIONS(139), [anon_sym_ATx_COLON] = ACTIONS(139), [anon_sym_PIPE_DOT] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(115), - [anon_sym_LPAREN] = ACTIONS(117), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(147), [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_GT] = ACTIONS(141), + [anon_sym_GT] = ACTIONS(143), [anon_sym_GT_GT] = ACTIONS(139), - [sym_html_redirect_operator] = ACTIONS(141), + [sym_html_redirect_operator] = ACTIONS(143), [sym_html_append_operator] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(119), - [aux_sym_arg_identifier_token1] = ACTIONS(115), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(149), + [aux_sym_arg_identifier_token1] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(155), [sym__comment] = ACTIONS(3), [anon_sym_LF] = ACTIONS(139), [anon_sym_CR] = ACTIONS(139), [sym_file_descriptor] = ACTIONS(139), }, - [50] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(56), - [sym_args] = STATE(178), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(56), - [ts_builtin_sym_end] = ACTIONS(143), + [49] = { + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(54), + [sym_args] = STATE(255), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(54), + [ts_builtin_sym_end] = ACTIONS(157), [anon_sym_DQUOTE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_PIPEH] = ACTIONS(143), - [anon_sym_AT_AT_DOT] = ACTIONS(143), - [anon_sym_AT_AT_EQ] = ACTIONS(143), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(143), - [anon_sym_AT_AT] = ACTIONS(145), - [anon_sym_AT_ATc_COLON] = ACTIONS(143), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(143), - [anon_sym_AT_ATC] = ACTIONS(143), - [anon_sym_AT_ATdbt] = ACTIONS(145), - [anon_sym_AT_ATdbta] = ACTIONS(143), - [anon_sym_AT_ATdbtb] = ACTIONS(143), - [anon_sym_AT_ATdbts] = ACTIONS(143), - [anon_sym_AT_ATt] = ACTIONS(143), - [anon_sym_AT_ATb] = ACTIONS(143), - [anon_sym_AT_ATi] = ACTIONS(145), - [anon_sym_AT_ATii] = ACTIONS(143), - [anon_sym_AT_ATiS] = ACTIONS(145), - [anon_sym_AT_ATiSS] = ACTIONS(143), - [anon_sym_AT_ATis] = ACTIONS(143), - [anon_sym_AT_ATiz] = ACTIONS(143), - [anon_sym_AT_ATf] = ACTIONS(143), - [anon_sym_AT_ATF] = ACTIONS(143), - [anon_sym_AT_ATom] = ACTIONS(143), - [anon_sym_AT_ATdm] = ACTIONS(143), - [anon_sym_AT_ATr] = ACTIONS(143), - [anon_sym_AT_ATs_COLON] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [anon_sym_AT_BANG] = ACTIONS(143), - [anon_sym_AT_LPAREN] = ACTIONS(143), - [anon_sym_RPAREN] = ACTIONS(143), - [anon_sym_ATa_COLON] = ACTIONS(143), - [anon_sym_ATb_COLON] = ACTIONS(143), - [anon_sym_ATB_COLON] = ACTIONS(143), - [anon_sym_ATe_COLON] = ACTIONS(143), - [anon_sym_ATF_COLON] = ACTIONS(143), - [anon_sym_ATi_COLON] = ACTIONS(143), - [anon_sym_ATk_COLON] = ACTIONS(143), - [anon_sym_ATo_COLON] = ACTIONS(143), - [anon_sym_ATr_COLON] = ACTIONS(143), - [anon_sym_ATf_COLON] = ACTIONS(143), - [anon_sym_ATs_COLON] = ACTIONS(143), - [anon_sym_ATv_COLON] = ACTIONS(143), - [anon_sym_ATx_COLON] = ACTIONS(143), - [anon_sym_PIPE_DOT] = ACTIONS(143), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_PIPEH] = ACTIONS(157), + [anon_sym_AT_AT_DOT] = ACTIONS(157), + [anon_sym_AT_AT_EQ] = ACTIONS(157), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(157), + [anon_sym_AT_AT] = ACTIONS(159), + [anon_sym_AT_ATc_COLON] = ACTIONS(157), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(157), + [anon_sym_AT_ATC] = ACTIONS(157), + [anon_sym_AT_ATdbt] = ACTIONS(159), + [anon_sym_AT_ATdbta] = ACTIONS(157), + [anon_sym_AT_ATdbtb] = ACTIONS(157), + [anon_sym_AT_ATdbts] = ACTIONS(157), + [anon_sym_AT_ATt] = ACTIONS(157), + [anon_sym_AT_ATb] = ACTIONS(157), + [anon_sym_AT_ATi] = ACTIONS(159), + [anon_sym_AT_ATii] = ACTIONS(157), + [anon_sym_AT_ATiS] = ACTIONS(159), + [anon_sym_AT_ATiSS] = ACTIONS(157), + [anon_sym_AT_ATis] = ACTIONS(157), + [anon_sym_AT_ATiz] = ACTIONS(157), + [anon_sym_AT_ATf] = ACTIONS(157), + [anon_sym_AT_ATF] = ACTIONS(157), + [anon_sym_AT_ATom] = ACTIONS(157), + [anon_sym_AT_ATdm] = ACTIONS(157), + [anon_sym_AT_ATr] = ACTIONS(157), + [anon_sym_AT_ATs_COLON] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(159), + [anon_sym_AT_BANG] = ACTIONS(157), + [anon_sym_AT_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(157), + [anon_sym_ATa_COLON] = ACTIONS(157), + [anon_sym_ATb_COLON] = ACTIONS(157), + [anon_sym_ATB_COLON] = ACTIONS(157), + [anon_sym_ATe_COLON] = ACTIONS(157), + [anon_sym_ATF_COLON] = ACTIONS(157), + [anon_sym_ATi_COLON] = ACTIONS(157), + [anon_sym_ATk_COLON] = ACTIONS(157), + [anon_sym_ATo_COLON] = ACTIONS(157), + [anon_sym_ATr_COLON] = ACTIONS(157), + [anon_sym_ATf_COLON] = ACTIONS(157), + [anon_sym_ATs_COLON] = ACTIONS(157), + [anon_sym_ATv_COLON] = ACTIONS(157), + [anon_sym_ATx_COLON] = ACTIONS(157), + [anon_sym_PIPE_DOT] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(115), [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_SEMI] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_GT_GT] = ACTIONS(143), - [sym_html_redirect_operator] = ACTIONS(145), - [sym_html_append_operator] = ACTIONS(143), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(159), + [anon_sym_GT_GT] = ACTIONS(157), + [sym_html_redirect_operator] = ACTIONS(159), + [sym_html_append_operator] = ACTIONS(157), [anon_sym_COMMA] = ACTIONS(119), [aux_sym_arg_identifier_token1] = ACTIONS(115), [anon_sym_SQUOTE] = ACTIONS(121), [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), [anon_sym_BQUOTE] = ACTIONS(125), [sym__comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(143), - [anon_sym_CR] = ACTIONS(143), - [sym_file_descriptor] = ACTIONS(143), + [anon_sym_LF] = ACTIONS(157), + [anon_sym_CR] = ACTIONS(157), + [sym_file_descriptor] = ACTIONS(157), + }, + [50] = { + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(54), + [sym_args] = STATE(253), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(54), + [ts_builtin_sym_end] = ACTIONS(127), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_PIPE] = ACTIONS(129), + [anon_sym_PIPEH] = ACTIONS(127), + [anon_sym_AT_AT_DOT] = ACTIONS(127), + [anon_sym_AT_AT_EQ] = ACTIONS(127), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(127), + [anon_sym_AT_AT] = ACTIONS(129), + [anon_sym_AT_ATc_COLON] = ACTIONS(127), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(127), + [anon_sym_AT_ATC] = ACTIONS(127), + [anon_sym_AT_ATdbt] = ACTIONS(129), + [anon_sym_AT_ATdbta] = ACTIONS(127), + [anon_sym_AT_ATdbtb] = ACTIONS(127), + [anon_sym_AT_ATdbts] = ACTIONS(127), + [anon_sym_AT_ATt] = ACTIONS(127), + [anon_sym_AT_ATb] = ACTIONS(127), + [anon_sym_AT_ATi] = ACTIONS(129), + [anon_sym_AT_ATii] = ACTIONS(127), + [anon_sym_AT_ATiS] = ACTIONS(129), + [anon_sym_AT_ATiSS] = ACTIONS(127), + [anon_sym_AT_ATis] = ACTIONS(127), + [anon_sym_AT_ATiz] = ACTIONS(127), + [anon_sym_AT_ATf] = ACTIONS(127), + [anon_sym_AT_ATF] = ACTIONS(127), + [anon_sym_AT_ATom] = ACTIONS(127), + [anon_sym_AT_ATdm] = ACTIONS(127), + [anon_sym_AT_ATr] = ACTIONS(127), + [anon_sym_AT_ATs_COLON] = ACTIONS(127), + [anon_sym_AT] = ACTIONS(129), + [anon_sym_AT_BANG] = ACTIONS(127), + [anon_sym_AT_LPAREN] = ACTIONS(127), + [anon_sym_RPAREN] = ACTIONS(127), + [anon_sym_ATa_COLON] = ACTIONS(127), + [anon_sym_ATb_COLON] = ACTIONS(127), + [anon_sym_ATB_COLON] = ACTIONS(127), + [anon_sym_ATe_COLON] = ACTIONS(127), + [anon_sym_ATF_COLON] = ACTIONS(127), + [anon_sym_ATi_COLON] = ACTIONS(127), + [anon_sym_ATk_COLON] = ACTIONS(127), + [anon_sym_ATo_COLON] = ACTIONS(127), + [anon_sym_ATr_COLON] = ACTIONS(127), + [anon_sym_ATf_COLON] = ACTIONS(127), + [anon_sym_ATs_COLON] = ACTIONS(127), + [anon_sym_ATv_COLON] = ACTIONS(127), + [anon_sym_ATx_COLON] = ACTIONS(127), + [anon_sym_PIPE_DOT] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(117), + [anon_sym_SEMI] = ACTIONS(127), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_GT_GT] = ACTIONS(127), + [sym_html_redirect_operator] = ACTIONS(129), + [sym_html_append_operator] = ACTIONS(127), + [anon_sym_COMMA] = ACTIONS(119), + [aux_sym_arg_identifier_token1] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), + [anon_sym_BQUOTE] = ACTIONS(125), + [sym__comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(127), + [anon_sym_CR] = ACTIONS(127), + [sym_file_descriptor] = ACTIONS(127), }, [51] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(56), - [sym_args] = STATE(252), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(56), - [ts_builtin_sym_end] = ACTIONS(147), + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(54), + [sym_args] = STATE(254), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(54), + [ts_builtin_sym_end] = ACTIONS(161), [anon_sym_DQUOTE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_PIPEH] = ACTIONS(147), - [anon_sym_AT_AT_DOT] = ACTIONS(147), - [anon_sym_AT_AT_EQ] = ACTIONS(147), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(147), - [anon_sym_AT_AT] = ACTIONS(149), - [anon_sym_AT_ATc_COLON] = ACTIONS(147), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(147), - [anon_sym_AT_ATC] = ACTIONS(147), - [anon_sym_AT_ATdbt] = ACTIONS(149), - [anon_sym_AT_ATdbta] = ACTIONS(147), - [anon_sym_AT_ATdbtb] = ACTIONS(147), - [anon_sym_AT_ATdbts] = ACTIONS(147), - [anon_sym_AT_ATt] = ACTIONS(147), - [anon_sym_AT_ATb] = ACTIONS(147), - [anon_sym_AT_ATi] = ACTIONS(149), - [anon_sym_AT_ATii] = ACTIONS(147), - [anon_sym_AT_ATiS] = ACTIONS(149), - [anon_sym_AT_ATiSS] = ACTIONS(147), - [anon_sym_AT_ATis] = ACTIONS(147), - [anon_sym_AT_ATiz] = ACTIONS(147), - [anon_sym_AT_ATf] = ACTIONS(147), - [anon_sym_AT_ATF] = ACTIONS(147), - [anon_sym_AT_ATom] = ACTIONS(147), - [anon_sym_AT_ATdm] = ACTIONS(147), - [anon_sym_AT_ATr] = ACTIONS(147), - [anon_sym_AT_ATs_COLON] = ACTIONS(147), - [anon_sym_AT] = ACTIONS(149), - [anon_sym_AT_BANG] = ACTIONS(147), - [anon_sym_AT_LPAREN] = ACTIONS(147), - [anon_sym_RPAREN] = ACTIONS(147), - [anon_sym_ATa_COLON] = ACTIONS(147), - [anon_sym_ATb_COLON] = ACTIONS(147), - [anon_sym_ATB_COLON] = ACTIONS(147), - [anon_sym_ATe_COLON] = ACTIONS(147), - [anon_sym_ATF_COLON] = ACTIONS(147), - [anon_sym_ATi_COLON] = ACTIONS(147), - [anon_sym_ATk_COLON] = ACTIONS(147), - [anon_sym_ATo_COLON] = ACTIONS(147), - [anon_sym_ATr_COLON] = ACTIONS(147), - [anon_sym_ATf_COLON] = ACTIONS(147), - [anon_sym_ATs_COLON] = ACTIONS(147), - [anon_sym_ATv_COLON] = ACTIONS(147), - [anon_sym_ATx_COLON] = ACTIONS(147), - [anon_sym_PIPE_DOT] = ACTIONS(147), + [anon_sym_TILDE] = ACTIONS(161), + [anon_sym_PIPE] = ACTIONS(163), + [anon_sym_PIPEH] = ACTIONS(161), + [anon_sym_AT_AT_DOT] = ACTIONS(161), + [anon_sym_AT_AT_EQ] = ACTIONS(161), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(161), + [anon_sym_AT_AT] = ACTIONS(163), + [anon_sym_AT_ATc_COLON] = ACTIONS(161), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(161), + [anon_sym_AT_ATC] = ACTIONS(161), + [anon_sym_AT_ATdbt] = ACTIONS(163), + [anon_sym_AT_ATdbta] = ACTIONS(161), + [anon_sym_AT_ATdbtb] = ACTIONS(161), + [anon_sym_AT_ATdbts] = ACTIONS(161), + [anon_sym_AT_ATt] = ACTIONS(161), + [anon_sym_AT_ATb] = ACTIONS(161), + [anon_sym_AT_ATi] = ACTIONS(163), + [anon_sym_AT_ATii] = ACTIONS(161), + [anon_sym_AT_ATiS] = ACTIONS(163), + [anon_sym_AT_ATiSS] = ACTIONS(161), + [anon_sym_AT_ATis] = ACTIONS(161), + [anon_sym_AT_ATiz] = ACTIONS(161), + [anon_sym_AT_ATf] = ACTIONS(161), + [anon_sym_AT_ATF] = ACTIONS(161), + [anon_sym_AT_ATom] = ACTIONS(161), + [anon_sym_AT_ATdm] = ACTIONS(161), + [anon_sym_AT_ATr] = ACTIONS(161), + [anon_sym_AT_ATs_COLON] = ACTIONS(161), + [anon_sym_AT] = ACTIONS(163), + [anon_sym_AT_BANG] = ACTIONS(161), + [anon_sym_AT_LPAREN] = ACTIONS(161), + [anon_sym_RPAREN] = ACTIONS(161), + [anon_sym_ATa_COLON] = ACTIONS(161), + [anon_sym_ATb_COLON] = ACTIONS(161), + [anon_sym_ATB_COLON] = ACTIONS(161), + [anon_sym_ATe_COLON] = ACTIONS(161), + [anon_sym_ATF_COLON] = ACTIONS(161), + [anon_sym_ATi_COLON] = ACTIONS(161), + [anon_sym_ATk_COLON] = ACTIONS(161), + [anon_sym_ATo_COLON] = ACTIONS(161), + [anon_sym_ATr_COLON] = ACTIONS(161), + [anon_sym_ATf_COLON] = ACTIONS(161), + [anon_sym_ATs_COLON] = ACTIONS(161), + [anon_sym_ATv_COLON] = ACTIONS(161), + [anon_sym_ATx_COLON] = ACTIONS(161), + [anon_sym_PIPE_DOT] = ACTIONS(161), [anon_sym_DOLLAR] = ACTIONS(115), [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(147), - [sym_html_redirect_operator] = ACTIONS(149), - [sym_html_append_operator] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_GT] = ACTIONS(163), + [anon_sym_GT_GT] = ACTIONS(161), + [sym_html_redirect_operator] = ACTIONS(163), + [sym_html_append_operator] = ACTIONS(161), [anon_sym_COMMA] = ACTIONS(119), [aux_sym_arg_identifier_token1] = ACTIONS(115), [anon_sym_SQUOTE] = ACTIONS(121), [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), [anon_sym_BQUOTE] = ACTIONS(125), [sym__comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(147), - [anon_sym_CR] = ACTIONS(147), - [sym_file_descriptor] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(161), + [anon_sym_CR] = ACTIONS(161), + [sym_file_descriptor] = ACTIONS(161), }, [52] = { - [sym_macro_content] = STATE(137), - [sym_macro_args] = STATE(204), - [sym__arg_with_paren] = STATE(311), - [sym__arg] = STATE(311), - [sym_arg] = STATE(268), - [sym_arg_identifier] = STATE(311), - [sym_double_quoted_arg] = STATE(311), - [sym_single_quoted_arg] = STATE(311), - [sym_cmd_substitution_arg] = STATE(311), - [sym_concatenation] = STATE(333), - [ts_builtin_sym_end] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_PIPEH] = ACTIONS(151), - [anon_sym_AT_AT_DOT] = ACTIONS(151), - [anon_sym_AT_AT_EQ] = ACTIONS(151), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(151), - [anon_sym_AT_AT] = ACTIONS(155), - [anon_sym_AT_ATc_COLON] = ACTIONS(151), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(151), - [anon_sym_AT_ATC] = ACTIONS(151), - [anon_sym_AT_ATdbt] = ACTIONS(155), - [anon_sym_AT_ATdbta] = ACTIONS(151), - [anon_sym_AT_ATdbtb] = ACTIONS(151), - [anon_sym_AT_ATdbts] = ACTIONS(151), - [anon_sym_AT_ATt] = ACTIONS(151), - [anon_sym_AT_ATb] = ACTIONS(151), - [anon_sym_AT_ATi] = ACTIONS(155), - [anon_sym_AT_ATii] = ACTIONS(151), - [anon_sym_AT_ATiS] = ACTIONS(155), - [anon_sym_AT_ATiSS] = ACTIONS(151), - [anon_sym_AT_ATis] = ACTIONS(151), - [anon_sym_AT_ATiz] = ACTIONS(151), - [anon_sym_AT_ATf] = ACTIONS(151), - [anon_sym_AT_ATF] = ACTIONS(151), - [anon_sym_AT_ATom] = ACTIONS(151), - [anon_sym_AT_ATdm] = ACTIONS(151), - [anon_sym_AT_ATr] = ACTIONS(151), - [anon_sym_AT_ATs_COLON] = ACTIONS(151), - [anon_sym_AT] = ACTIONS(155), - [anon_sym_AT_BANG] = ACTIONS(151), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_RPAREN] = ACTIONS(151), - [anon_sym_ATa_COLON] = ACTIONS(151), - [anon_sym_ATb_COLON] = ACTIONS(151), - [anon_sym_ATB_COLON] = ACTIONS(151), - [anon_sym_ATe_COLON] = ACTIONS(151), - [anon_sym_ATF_COLON] = ACTIONS(151), - [anon_sym_ATi_COLON] = ACTIONS(151), - [anon_sym_ATk_COLON] = ACTIONS(151), - [anon_sym_ATo_COLON] = ACTIONS(151), - [anon_sym_ATr_COLON] = ACTIONS(151), - [anon_sym_ATf_COLON] = ACTIONS(151), - [anon_sym_ATs_COLON] = ACTIONS(151), - [anon_sym_ATv_COLON] = ACTIONS(151), - [anon_sym_ATx_COLON] = ACTIONS(151), - [anon_sym_PIPE_DOT] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_SEMI] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_html_redirect_operator] = ACTIONS(155), - [sym_html_append_operator] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(161), - [aux_sym_arg_identifier_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(167), + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(54), + [sym_args] = STATE(237), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(54), + [ts_builtin_sym_end] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PIPEH] = ACTIONS(165), + [anon_sym_AT_AT_DOT] = ACTIONS(165), + [anon_sym_AT_AT_EQ] = ACTIONS(165), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(165), + [anon_sym_AT_AT] = ACTIONS(167), + [anon_sym_AT_ATc_COLON] = ACTIONS(165), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(165), + [anon_sym_AT_ATC] = ACTIONS(165), + [anon_sym_AT_ATdbt] = ACTIONS(167), + [anon_sym_AT_ATdbta] = ACTIONS(165), + [anon_sym_AT_ATdbtb] = ACTIONS(165), + [anon_sym_AT_ATdbts] = ACTIONS(165), + [anon_sym_AT_ATt] = ACTIONS(165), + [anon_sym_AT_ATb] = ACTIONS(165), + [anon_sym_AT_ATi] = ACTIONS(167), + [anon_sym_AT_ATii] = ACTIONS(165), + [anon_sym_AT_ATiS] = ACTIONS(167), + [anon_sym_AT_ATiSS] = ACTIONS(165), + [anon_sym_AT_ATis] = ACTIONS(165), + [anon_sym_AT_ATiz] = ACTIONS(165), + [anon_sym_AT_ATf] = ACTIONS(165), + [anon_sym_AT_ATF] = ACTIONS(165), + [anon_sym_AT_ATom] = ACTIONS(165), + [anon_sym_AT_ATdm] = ACTIONS(165), + [anon_sym_AT_ATr] = ACTIONS(165), + [anon_sym_AT_ATs_COLON] = ACTIONS(165), + [anon_sym_AT] = ACTIONS(167), + [anon_sym_AT_BANG] = ACTIONS(165), + [anon_sym_AT_LPAREN] = ACTIONS(165), + [anon_sym_RPAREN] = ACTIONS(165), + [anon_sym_ATa_COLON] = ACTIONS(165), + [anon_sym_ATb_COLON] = ACTIONS(165), + [anon_sym_ATB_COLON] = ACTIONS(165), + [anon_sym_ATe_COLON] = ACTIONS(165), + [anon_sym_ATF_COLON] = ACTIONS(165), + [anon_sym_ATi_COLON] = ACTIONS(165), + [anon_sym_ATk_COLON] = ACTIONS(165), + [anon_sym_ATo_COLON] = ACTIONS(165), + [anon_sym_ATr_COLON] = ACTIONS(165), + [anon_sym_ATf_COLON] = ACTIONS(165), + [anon_sym_ATs_COLON] = ACTIONS(165), + [anon_sym_ATv_COLON] = ACTIONS(165), + [anon_sym_ATx_COLON] = ACTIONS(165), + [anon_sym_PIPE_DOT] = ACTIONS(165), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(117), + [anon_sym_SEMI] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(167), + [anon_sym_GT_GT] = ACTIONS(165), + [sym_html_redirect_operator] = ACTIONS(167), + [sym_html_append_operator] = ACTIONS(165), + [anon_sym_COMMA] = ACTIONS(119), + [aux_sym_arg_identifier_token1] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), + [anon_sym_BQUOTE] = ACTIONS(125), [sym__comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(151), - [anon_sym_CR] = ACTIONS(151), - [sym_file_descriptor] = ACTIONS(151), + [anon_sym_LF] = ACTIONS(165), + [anon_sym_CR] = ACTIONS(165), + [sym_file_descriptor] = ACTIONS(165), }, [53] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(56), - [sym_args] = STATE(173), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(56), + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(54), + [sym_args] = STATE(219), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(54), [ts_builtin_sym_end] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(111), [anon_sym_TILDE] = ACTIONS(169), @@ -10207,36 +10283,36 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(169), }, [54] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(54), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(54), + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(55), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(55), [ts_builtin_sym_end] = ACTIONS(173), - [anon_sym_DQUOTE] = ACTIONS(175), + [anon_sym_DQUOTE] = ACTIONS(111), [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(178), + [anon_sym_PIPE] = ACTIONS(175), [anon_sym_PIPEH] = ACTIONS(173), [anon_sym_AT_AT_DOT] = ACTIONS(173), [anon_sym_AT_AT_EQ] = ACTIONS(173), [anon_sym_AT_AT_AT_EQ] = ACTIONS(173), - [anon_sym_AT_AT] = ACTIONS(178), + [anon_sym_AT_AT] = ACTIONS(175), [anon_sym_AT_ATc_COLON] = ACTIONS(173), [anon_sym_AT_AT_ATc_COLON] = ACTIONS(173), [anon_sym_AT_ATC] = ACTIONS(173), - [anon_sym_AT_ATdbt] = ACTIONS(178), + [anon_sym_AT_ATdbt] = ACTIONS(175), [anon_sym_AT_ATdbta] = ACTIONS(173), [anon_sym_AT_ATdbtb] = ACTIONS(173), [anon_sym_AT_ATdbts] = ACTIONS(173), [anon_sym_AT_ATt] = ACTIONS(173), [anon_sym_AT_ATb] = ACTIONS(173), - [anon_sym_AT_ATi] = ACTIONS(178), + [anon_sym_AT_ATi] = ACTIONS(175), [anon_sym_AT_ATii] = ACTIONS(173), - [anon_sym_AT_ATiS] = ACTIONS(178), + [anon_sym_AT_ATiS] = ACTIONS(175), [anon_sym_AT_ATiSS] = ACTIONS(173), [anon_sym_AT_ATis] = ACTIONS(173), [anon_sym_AT_ATiz] = ACTIONS(173), @@ -10246,7 +10322,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT_ATdm] = ACTIONS(173), [anon_sym_AT_ATr] = ACTIONS(173), [anon_sym_AT_ATs_COLON] = ACTIONS(173), - [anon_sym_AT] = ACTIONS(178), + [anon_sym_AT] = ACTIONS(175), [anon_sym_AT_BANG] = ACTIONS(173), [anon_sym_AT_LPAREN] = ACTIONS(173), [anon_sym_RPAREN] = ACTIONS(173), @@ -10264,181 +10340,181 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATv_COLON] = ACTIONS(173), [anon_sym_ATx_COLON] = ACTIONS(173), [anon_sym_PIPE_DOT] = ACTIONS(173), - [anon_sym_DOLLAR] = ACTIONS(180), - [anon_sym_LPAREN] = ACTIONS(183), - [anon_sym_SEMI] = ACTIONS(173), - [anon_sym_GT] = ACTIONS(178), - [anon_sym_GT_GT] = ACTIONS(173), - [sym_html_redirect_operator] = ACTIONS(178), - [sym_html_append_operator] = ACTIONS(173), - [anon_sym_COMMA] = ACTIONS(186), - [aux_sym_arg_identifier_token1] = ACTIONS(180), - [anon_sym_SQUOTE] = ACTIONS(189), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(192), - [anon_sym_BQUOTE] = ACTIONS(195), - [sym__comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(173), - [anon_sym_CR] = ACTIONS(173), - [sym_file_descriptor] = ACTIONS(173), - }, - [55] = { - [sym__Cf_args] = STATE(177), - [sym__arg_with_paren] = STATE(379), - [sym__arg] = STATE(379), - [sym_arg] = STATE(330), - [sym_arg_identifier] = STATE(379), - [sym_double_quoted_arg] = STATE(379), - [sym_single_quoted_arg] = STATE(379), - [sym_cmd_substitution_arg] = STATE(379), - [sym_concatenation] = STATE(394), - [ts_builtin_sym_end] = ACTIONS(198), - [anon_sym_DQUOTE] = ACTIONS(200), - [anon_sym_TILDE] = ACTIONS(198), - [anon_sym_PIPE] = ACTIONS(202), - [anon_sym_PIPEH] = ACTIONS(198), - [anon_sym_AT_AT_DOT] = ACTIONS(198), - [anon_sym_AT_AT_EQ] = ACTIONS(198), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(198), - [anon_sym_AT_AT] = ACTIONS(202), - [anon_sym_AT_ATc_COLON] = ACTIONS(198), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(198), - [anon_sym_AT_ATC] = ACTIONS(198), - [anon_sym_AT_ATdbt] = ACTIONS(202), - [anon_sym_AT_ATdbta] = ACTIONS(198), - [anon_sym_AT_ATdbtb] = ACTIONS(198), - [anon_sym_AT_ATdbts] = ACTIONS(198), - [anon_sym_AT_ATt] = ACTIONS(198), - [anon_sym_AT_ATb] = ACTIONS(198), - [anon_sym_AT_ATi] = ACTIONS(202), - [anon_sym_AT_ATii] = ACTIONS(198), - [anon_sym_AT_ATiS] = ACTIONS(202), - [anon_sym_AT_ATiSS] = ACTIONS(198), - [anon_sym_AT_ATis] = ACTIONS(198), - [anon_sym_AT_ATiz] = ACTIONS(198), - [anon_sym_AT_ATf] = ACTIONS(198), - [anon_sym_AT_ATF] = ACTIONS(198), - [anon_sym_AT_ATom] = ACTIONS(198), - [anon_sym_AT_ATdm] = ACTIONS(198), - [anon_sym_AT_ATr] = ACTIONS(198), - [anon_sym_AT_ATs_COLON] = ACTIONS(198), - [anon_sym_AT] = ACTIONS(202), - [anon_sym_AT_BANG] = ACTIONS(198), - [anon_sym_AT_LPAREN] = ACTIONS(198), - [anon_sym_RPAREN] = ACTIONS(198), - [anon_sym_ATa_COLON] = ACTIONS(198), - [anon_sym_ATb_COLON] = ACTIONS(198), - [anon_sym_ATB_COLON] = ACTIONS(198), - [anon_sym_ATe_COLON] = ACTIONS(198), - [anon_sym_ATF_COLON] = ACTIONS(198), - [anon_sym_ATi_COLON] = ACTIONS(198), - [anon_sym_ATk_COLON] = ACTIONS(198), - [anon_sym_ATo_COLON] = ACTIONS(198), - [anon_sym_ATr_COLON] = ACTIONS(198), - [anon_sym_ATf_COLON] = ACTIONS(198), - [anon_sym_ATs_COLON] = ACTIONS(198), - [anon_sym_ATv_COLON] = ACTIONS(198), - [anon_sym_ATx_COLON] = ACTIONS(198), - [anon_sym_PIPE_DOT] = ACTIONS(198), - [anon_sym_DOLLAR] = ACTIONS(204), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(198), - [anon_sym_GT] = ACTIONS(202), - [anon_sym_GT_GT] = ACTIONS(198), - [sym_html_redirect_operator] = ACTIONS(202), - [sym_html_append_operator] = ACTIONS(198), - [anon_sym_COMMA] = ACTIONS(208), - [aux_sym_arg_identifier_token1] = ACTIONS(204), - [anon_sym_SQUOTE] = ACTIONS(210), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(212), - [anon_sym_BQUOTE] = ACTIONS(214), - [sym__comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(198), - [anon_sym_CR] = ACTIONS(198), - [sym_file_descriptor] = ACTIONS(198), - }, - [56] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(54), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(54), - [ts_builtin_sym_end] = ACTIONS(216), - [anon_sym_DQUOTE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(216), - [anon_sym_PIPE] = ACTIONS(218), - [anon_sym_PIPEH] = ACTIONS(216), - [anon_sym_AT_AT_DOT] = ACTIONS(216), - [anon_sym_AT_AT_EQ] = ACTIONS(216), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(216), - [anon_sym_AT_AT] = ACTIONS(218), - [anon_sym_AT_ATc_COLON] = ACTIONS(216), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(216), - [anon_sym_AT_ATC] = ACTIONS(216), - [anon_sym_AT_ATdbt] = ACTIONS(218), - [anon_sym_AT_ATdbta] = ACTIONS(216), - [anon_sym_AT_ATdbtb] = ACTIONS(216), - [anon_sym_AT_ATdbts] = ACTIONS(216), - [anon_sym_AT_ATt] = ACTIONS(216), - [anon_sym_AT_ATb] = ACTIONS(216), - [anon_sym_AT_ATi] = ACTIONS(218), - [anon_sym_AT_ATii] = ACTIONS(216), - [anon_sym_AT_ATiS] = ACTIONS(218), - [anon_sym_AT_ATiSS] = ACTIONS(216), - [anon_sym_AT_ATis] = ACTIONS(216), - [anon_sym_AT_ATiz] = ACTIONS(216), - [anon_sym_AT_ATf] = ACTIONS(216), - [anon_sym_AT_ATF] = ACTIONS(216), - [anon_sym_AT_ATom] = ACTIONS(216), - [anon_sym_AT_ATdm] = ACTIONS(216), - [anon_sym_AT_ATr] = ACTIONS(216), - [anon_sym_AT_ATs_COLON] = ACTIONS(216), - [anon_sym_AT] = ACTIONS(218), - [anon_sym_AT_BANG] = ACTIONS(216), - [anon_sym_AT_LPAREN] = ACTIONS(216), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_ATa_COLON] = ACTIONS(216), - [anon_sym_ATb_COLON] = ACTIONS(216), - [anon_sym_ATB_COLON] = ACTIONS(216), - [anon_sym_ATe_COLON] = ACTIONS(216), - [anon_sym_ATF_COLON] = ACTIONS(216), - [anon_sym_ATi_COLON] = ACTIONS(216), - [anon_sym_ATk_COLON] = ACTIONS(216), - [anon_sym_ATo_COLON] = ACTIONS(216), - [anon_sym_ATr_COLON] = ACTIONS(216), - [anon_sym_ATf_COLON] = ACTIONS(216), - [anon_sym_ATs_COLON] = ACTIONS(216), - [anon_sym_ATv_COLON] = ACTIONS(216), - [anon_sym_ATx_COLON] = ACTIONS(216), - [anon_sym_PIPE_DOT] = ACTIONS(216), [anon_sym_DOLLAR] = ACTIONS(115), [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_SEMI] = ACTIONS(216), - [anon_sym_GT] = ACTIONS(218), - [anon_sym_GT_GT] = ACTIONS(216), - [sym_html_redirect_operator] = ACTIONS(218), - [sym_html_append_operator] = ACTIONS(216), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_GT] = ACTIONS(175), + [anon_sym_GT_GT] = ACTIONS(173), + [sym_html_redirect_operator] = ACTIONS(175), + [sym_html_append_operator] = ACTIONS(173), [anon_sym_COMMA] = ACTIONS(119), [aux_sym_arg_identifier_token1] = ACTIONS(115), [anon_sym_SQUOTE] = ACTIONS(121), [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), [anon_sym_BQUOTE] = ACTIONS(125), [sym__comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(216), - [anon_sym_CR] = ACTIONS(216), - [sym_file_descriptor] = ACTIONS(216), + [anon_sym_LF] = ACTIONS(173), + [anon_sym_CR] = ACTIONS(173), + [sym_file_descriptor] = ACTIONS(173), + }, + [55] = { + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(55), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(55), + [ts_builtin_sym_end] = ACTIONS(177), + [anon_sym_DQUOTE] = ACTIONS(179), + [anon_sym_TILDE] = ACTIONS(177), + [anon_sym_PIPE] = ACTIONS(182), + [anon_sym_PIPEH] = ACTIONS(177), + [anon_sym_AT_AT_DOT] = ACTIONS(177), + [anon_sym_AT_AT_EQ] = ACTIONS(177), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(177), + [anon_sym_AT_AT] = ACTIONS(182), + [anon_sym_AT_ATc_COLON] = ACTIONS(177), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(177), + [anon_sym_AT_ATC] = ACTIONS(177), + [anon_sym_AT_ATdbt] = ACTIONS(182), + [anon_sym_AT_ATdbta] = ACTIONS(177), + [anon_sym_AT_ATdbtb] = ACTIONS(177), + [anon_sym_AT_ATdbts] = ACTIONS(177), + [anon_sym_AT_ATt] = ACTIONS(177), + [anon_sym_AT_ATb] = ACTIONS(177), + [anon_sym_AT_ATi] = ACTIONS(182), + [anon_sym_AT_ATii] = ACTIONS(177), + [anon_sym_AT_ATiS] = ACTIONS(182), + [anon_sym_AT_ATiSS] = ACTIONS(177), + [anon_sym_AT_ATis] = ACTIONS(177), + [anon_sym_AT_ATiz] = ACTIONS(177), + [anon_sym_AT_ATf] = ACTIONS(177), + [anon_sym_AT_ATF] = ACTIONS(177), + [anon_sym_AT_ATom] = ACTIONS(177), + [anon_sym_AT_ATdm] = ACTIONS(177), + [anon_sym_AT_ATr] = ACTIONS(177), + [anon_sym_AT_ATs_COLON] = ACTIONS(177), + [anon_sym_AT] = ACTIONS(182), + [anon_sym_AT_BANG] = ACTIONS(177), + [anon_sym_AT_LPAREN] = ACTIONS(177), + [anon_sym_RPAREN] = ACTIONS(177), + [anon_sym_ATa_COLON] = ACTIONS(177), + [anon_sym_ATb_COLON] = ACTIONS(177), + [anon_sym_ATB_COLON] = ACTIONS(177), + [anon_sym_ATe_COLON] = ACTIONS(177), + [anon_sym_ATF_COLON] = ACTIONS(177), + [anon_sym_ATi_COLON] = ACTIONS(177), + [anon_sym_ATk_COLON] = ACTIONS(177), + [anon_sym_ATo_COLON] = ACTIONS(177), + [anon_sym_ATr_COLON] = ACTIONS(177), + [anon_sym_ATf_COLON] = ACTIONS(177), + [anon_sym_ATs_COLON] = ACTIONS(177), + [anon_sym_ATv_COLON] = ACTIONS(177), + [anon_sym_ATx_COLON] = ACTIONS(177), + [anon_sym_PIPE_DOT] = ACTIONS(177), + [anon_sym_DOLLAR] = ACTIONS(184), + [anon_sym_LPAREN] = ACTIONS(187), + [anon_sym_SEMI] = ACTIONS(177), + [anon_sym_GT] = ACTIONS(182), + [anon_sym_GT_GT] = ACTIONS(177), + [sym_html_redirect_operator] = ACTIONS(182), + [sym_html_append_operator] = ACTIONS(177), + [anon_sym_COMMA] = ACTIONS(190), + [aux_sym_arg_identifier_token1] = ACTIONS(184), + [anon_sym_SQUOTE] = ACTIONS(193), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(196), + [anon_sym_BQUOTE] = ACTIONS(199), + [sym__comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(177), + [anon_sym_CR] = ACTIONS(177), + [sym_file_descriptor] = ACTIONS(177), + }, + [56] = { + [sym__Cf_args] = STATE(223), + [sym__arg_with_paren] = STATE(387), + [sym__arg] = STATE(387), + [sym_arg] = STATE(338), + [sym_arg_identifier] = STATE(387), + [sym_double_quoted_arg] = STATE(387), + [sym_single_quoted_arg] = STATE(387), + [sym_cmd_substitution_arg] = STATE(387), + [sym_concatenation] = STATE(405), + [ts_builtin_sym_end] = ACTIONS(202), + [anon_sym_DQUOTE] = ACTIONS(204), + [anon_sym_TILDE] = ACTIONS(202), + [anon_sym_PIPE] = ACTIONS(206), + [anon_sym_PIPEH] = ACTIONS(202), + [anon_sym_AT_AT_DOT] = ACTIONS(202), + [anon_sym_AT_AT_EQ] = ACTIONS(202), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(202), + [anon_sym_AT_AT] = ACTIONS(206), + [anon_sym_AT_ATc_COLON] = ACTIONS(202), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(202), + [anon_sym_AT_ATC] = ACTIONS(202), + [anon_sym_AT_ATdbt] = ACTIONS(206), + [anon_sym_AT_ATdbta] = ACTIONS(202), + [anon_sym_AT_ATdbtb] = ACTIONS(202), + [anon_sym_AT_ATdbts] = ACTIONS(202), + [anon_sym_AT_ATt] = ACTIONS(202), + [anon_sym_AT_ATb] = ACTIONS(202), + [anon_sym_AT_ATi] = ACTIONS(206), + [anon_sym_AT_ATii] = ACTIONS(202), + [anon_sym_AT_ATiS] = ACTIONS(206), + [anon_sym_AT_ATiSS] = ACTIONS(202), + [anon_sym_AT_ATis] = ACTIONS(202), + [anon_sym_AT_ATiz] = ACTIONS(202), + [anon_sym_AT_ATf] = ACTIONS(202), + [anon_sym_AT_ATF] = ACTIONS(202), + [anon_sym_AT_ATom] = ACTIONS(202), + [anon_sym_AT_ATdm] = ACTIONS(202), + [anon_sym_AT_ATr] = ACTIONS(202), + [anon_sym_AT_ATs_COLON] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(206), + [anon_sym_AT_BANG] = ACTIONS(202), + [anon_sym_AT_LPAREN] = ACTIONS(202), + [anon_sym_RPAREN] = ACTIONS(202), + [anon_sym_ATa_COLON] = ACTIONS(202), + [anon_sym_ATb_COLON] = ACTIONS(202), + [anon_sym_ATB_COLON] = ACTIONS(202), + [anon_sym_ATe_COLON] = ACTIONS(202), + [anon_sym_ATF_COLON] = ACTIONS(202), + [anon_sym_ATi_COLON] = ACTIONS(202), + [anon_sym_ATk_COLON] = ACTIONS(202), + [anon_sym_ATo_COLON] = ACTIONS(202), + [anon_sym_ATr_COLON] = ACTIONS(202), + [anon_sym_ATf_COLON] = ACTIONS(202), + [anon_sym_ATs_COLON] = ACTIONS(202), + [anon_sym_ATv_COLON] = ACTIONS(202), + [anon_sym_ATx_COLON] = ACTIONS(202), + [anon_sym_PIPE_DOT] = ACTIONS(202), + [anon_sym_DOLLAR] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(206), + [anon_sym_GT_GT] = ACTIONS(202), + [sym_html_redirect_operator] = ACTIONS(206), + [sym_html_append_operator] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(212), + [aux_sym_arg_identifier_token1] = ACTIONS(208), + [anon_sym_SQUOTE] = ACTIONS(214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), + [anon_sym_BQUOTE] = ACTIONS(218), + [sym__comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(202), + [anon_sym_CR] = ACTIONS(202), + [sym_file_descriptor] = ACTIONS(202), }, [57] = { - [sym__pf_arg_parentheses] = STATE(96), - [sym_pf_arg_identifier] = STATE(96), - [sym__pf_arg] = STATE(96), - [sym_pf_concatenation] = STATE(106), + [sym__pf_arg_parentheses] = STATE(99), + [sym_pf_arg_identifier] = STATE(99), + [sym__pf_arg] = STATE(99), + [sym_pf_concatenation] = STATE(109), [sym_pf_arg] = STATE(72), - [sym_pf_args] = STATE(216), - [sym_cmd_substitution_arg] = STATE(96), + [sym_pf_args] = STATE(226), + [sym_cmd_substitution_arg] = STATE(99), [aux_sym_pf_args_repeat1] = STATE(72), [aux_sym_pf_dot_args_repeat1] = STATE(114), [ts_builtin_sym_end] = ACTIONS(220), @@ -10506,232 +10582,304 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__concat_pf_dot] = ACTIONS(232), }, [58] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(68), - [sym_args] = STATE(202), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(68), + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(69), + [sym_args] = STATE(254), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(69), [anon_sym_DQUOTE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(135), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_PIPEH] = ACTIONS(135), - [anon_sym_AT_AT_DOT] = ACTIONS(135), - [anon_sym_AT_AT_EQ] = ACTIONS(135), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(135), - [anon_sym_AT_AT] = ACTIONS(137), - [anon_sym_AT_ATc_COLON] = ACTIONS(135), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(135), - [anon_sym_AT_ATC] = ACTIONS(135), - [anon_sym_AT_ATdbt] = ACTIONS(137), - [anon_sym_AT_ATdbta] = ACTIONS(135), - [anon_sym_AT_ATdbtb] = ACTIONS(135), - [anon_sym_AT_ATdbts] = ACTIONS(135), - [anon_sym_AT_ATt] = ACTIONS(135), - [anon_sym_AT_ATb] = ACTIONS(135), - [anon_sym_AT_ATi] = ACTIONS(137), - [anon_sym_AT_ATii] = ACTIONS(135), - [anon_sym_AT_ATiS] = ACTIONS(137), - [anon_sym_AT_ATiSS] = ACTIONS(135), - [anon_sym_AT_ATis] = ACTIONS(135), - [anon_sym_AT_ATiz] = ACTIONS(135), - [anon_sym_AT_ATf] = ACTIONS(135), - [anon_sym_AT_ATF] = ACTIONS(135), - [anon_sym_AT_ATom] = ACTIONS(135), - [anon_sym_AT_ATdm] = ACTIONS(135), - [anon_sym_AT_ATr] = ACTIONS(135), - [anon_sym_AT_ATs_COLON] = ACTIONS(135), - [anon_sym_AT] = ACTIONS(137), - [anon_sym_AT_BANG] = ACTIONS(135), - [anon_sym_AT_LPAREN] = ACTIONS(135), - [anon_sym_ATa_COLON] = ACTIONS(135), - [anon_sym_ATb_COLON] = ACTIONS(135), - [anon_sym_ATB_COLON] = ACTIONS(135), - [anon_sym_ATe_COLON] = ACTIONS(135), - [anon_sym_ATF_COLON] = ACTIONS(135), - [anon_sym_ATi_COLON] = ACTIONS(135), - [anon_sym_ATk_COLON] = ACTIONS(135), - [anon_sym_ATo_COLON] = ACTIONS(135), - [anon_sym_ATr_COLON] = ACTIONS(135), - [anon_sym_ATf_COLON] = ACTIONS(135), - [anon_sym_ATs_COLON] = ACTIONS(135), - [anon_sym_ATv_COLON] = ACTIONS(135), - [anon_sym_ATx_COLON] = ACTIONS(135), - [anon_sym_PIPE_DOT] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(161), + [anon_sym_PIPE] = ACTIONS(163), + [anon_sym_PIPEH] = ACTIONS(161), + [anon_sym_AT_AT_DOT] = ACTIONS(161), + [anon_sym_AT_AT_EQ] = ACTIONS(161), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(161), + [anon_sym_AT_AT] = ACTIONS(163), + [anon_sym_AT_ATc_COLON] = ACTIONS(161), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(161), + [anon_sym_AT_ATC] = ACTIONS(161), + [anon_sym_AT_ATdbt] = ACTIONS(163), + [anon_sym_AT_ATdbta] = ACTIONS(161), + [anon_sym_AT_ATdbtb] = ACTIONS(161), + [anon_sym_AT_ATdbts] = ACTIONS(161), + [anon_sym_AT_ATt] = ACTIONS(161), + [anon_sym_AT_ATb] = ACTIONS(161), + [anon_sym_AT_ATi] = ACTIONS(163), + [anon_sym_AT_ATii] = ACTIONS(161), + [anon_sym_AT_ATiS] = ACTIONS(163), + [anon_sym_AT_ATiSS] = ACTIONS(161), + [anon_sym_AT_ATis] = ACTIONS(161), + [anon_sym_AT_ATiz] = ACTIONS(161), + [anon_sym_AT_ATf] = ACTIONS(161), + [anon_sym_AT_ATF] = ACTIONS(161), + [anon_sym_AT_ATom] = ACTIONS(161), + [anon_sym_AT_ATdm] = ACTIONS(161), + [anon_sym_AT_ATr] = ACTIONS(161), + [anon_sym_AT_ATs_COLON] = ACTIONS(161), + [anon_sym_AT] = ACTIONS(163), + [anon_sym_AT_BANG] = ACTIONS(161), + [anon_sym_AT_LPAREN] = ACTIONS(161), + [anon_sym_ATa_COLON] = ACTIONS(161), + [anon_sym_ATb_COLON] = ACTIONS(161), + [anon_sym_ATB_COLON] = ACTIONS(161), + [anon_sym_ATe_COLON] = ACTIONS(161), + [anon_sym_ATF_COLON] = ACTIONS(161), + [anon_sym_ATi_COLON] = ACTIONS(161), + [anon_sym_ATk_COLON] = ACTIONS(161), + [anon_sym_ATo_COLON] = ACTIONS(161), + [anon_sym_ATr_COLON] = ACTIONS(161), + [anon_sym_ATf_COLON] = ACTIONS(161), + [anon_sym_ATs_COLON] = ACTIONS(161), + [anon_sym_ATv_COLON] = ACTIONS(161), + [anon_sym_ATx_COLON] = ACTIONS(161), + [anon_sym_PIPE_DOT] = ACTIONS(161), [anon_sym_DOLLAR] = ACTIONS(115), [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_SEMI] = ACTIONS(135), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_GT_GT] = ACTIONS(135), - [sym_html_redirect_operator] = ACTIONS(137), - [sym_html_append_operator] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_GT] = ACTIONS(163), + [anon_sym_GT_GT] = ACTIONS(161), + [sym_html_redirect_operator] = ACTIONS(163), + [sym_html_append_operator] = ACTIONS(161), [anon_sym_COMMA] = ACTIONS(119), [aux_sym_arg_identifier_token1] = ACTIONS(115), [anon_sym_SQUOTE] = ACTIONS(121), [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(135), + [anon_sym_BQUOTE] = ACTIONS(161), [sym__comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(135), + [sym_file_descriptor] = ACTIONS(161), }, [59] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(68), - [sym_args] = STATE(245), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(68), + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(69), + [sym_args] = STATE(219), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(69), [anon_sym_DQUOTE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_PIPEH] = ACTIONS(139), - [anon_sym_AT_AT_DOT] = ACTIONS(139), - [anon_sym_AT_AT_EQ] = ACTIONS(139), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(139), - [anon_sym_AT_AT] = ACTIONS(141), - [anon_sym_AT_ATc_COLON] = ACTIONS(139), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(139), - [anon_sym_AT_ATC] = ACTIONS(139), - [anon_sym_AT_ATdbt] = ACTIONS(141), - [anon_sym_AT_ATdbta] = ACTIONS(139), - [anon_sym_AT_ATdbtb] = ACTIONS(139), - [anon_sym_AT_ATdbts] = ACTIONS(139), - [anon_sym_AT_ATt] = ACTIONS(139), - [anon_sym_AT_ATb] = ACTIONS(139), - [anon_sym_AT_ATi] = ACTIONS(141), - [anon_sym_AT_ATii] = ACTIONS(139), - [anon_sym_AT_ATiS] = ACTIONS(141), - [anon_sym_AT_ATiSS] = ACTIONS(139), - [anon_sym_AT_ATis] = ACTIONS(139), - [anon_sym_AT_ATiz] = ACTIONS(139), - [anon_sym_AT_ATf] = ACTIONS(139), - [anon_sym_AT_ATF] = ACTIONS(139), - [anon_sym_AT_ATom] = ACTIONS(139), - [anon_sym_AT_ATdm] = ACTIONS(139), - [anon_sym_AT_ATr] = ACTIONS(139), - [anon_sym_AT_ATs_COLON] = ACTIONS(139), - [anon_sym_AT] = ACTIONS(141), - [anon_sym_AT_BANG] = ACTIONS(139), - [anon_sym_AT_LPAREN] = ACTIONS(139), - [anon_sym_ATa_COLON] = ACTIONS(139), - [anon_sym_ATb_COLON] = ACTIONS(139), - [anon_sym_ATB_COLON] = ACTIONS(139), - [anon_sym_ATe_COLON] = ACTIONS(139), - [anon_sym_ATF_COLON] = ACTIONS(139), - [anon_sym_ATi_COLON] = ACTIONS(139), - [anon_sym_ATk_COLON] = ACTIONS(139), - [anon_sym_ATo_COLON] = ACTIONS(139), - [anon_sym_ATr_COLON] = ACTIONS(139), - [anon_sym_ATf_COLON] = ACTIONS(139), - [anon_sym_ATs_COLON] = ACTIONS(139), - [anon_sym_ATv_COLON] = ACTIONS(139), - [anon_sym_ATx_COLON] = ACTIONS(139), - [anon_sym_PIPE_DOT] = ACTIONS(139), + [anon_sym_TILDE] = ACTIONS(169), + [anon_sym_PIPE] = ACTIONS(171), + [anon_sym_PIPEH] = ACTIONS(169), + [anon_sym_AT_AT_DOT] = ACTIONS(169), + [anon_sym_AT_AT_EQ] = ACTIONS(169), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(169), + [anon_sym_AT_AT] = ACTIONS(171), + [anon_sym_AT_ATc_COLON] = ACTIONS(169), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(169), + [anon_sym_AT_ATC] = ACTIONS(169), + [anon_sym_AT_ATdbt] = ACTIONS(171), + [anon_sym_AT_ATdbta] = ACTIONS(169), + [anon_sym_AT_ATdbtb] = ACTIONS(169), + [anon_sym_AT_ATdbts] = ACTIONS(169), + [anon_sym_AT_ATt] = ACTIONS(169), + [anon_sym_AT_ATb] = ACTIONS(169), + [anon_sym_AT_ATi] = ACTIONS(171), + [anon_sym_AT_ATii] = ACTIONS(169), + [anon_sym_AT_ATiS] = ACTIONS(171), + [anon_sym_AT_ATiSS] = ACTIONS(169), + [anon_sym_AT_ATis] = ACTIONS(169), + [anon_sym_AT_ATiz] = ACTIONS(169), + [anon_sym_AT_ATf] = ACTIONS(169), + [anon_sym_AT_ATF] = ACTIONS(169), + [anon_sym_AT_ATom] = ACTIONS(169), + [anon_sym_AT_ATdm] = ACTIONS(169), + [anon_sym_AT_ATr] = ACTIONS(169), + [anon_sym_AT_ATs_COLON] = ACTIONS(169), + [anon_sym_AT] = ACTIONS(171), + [anon_sym_AT_BANG] = ACTIONS(169), + [anon_sym_AT_LPAREN] = ACTIONS(169), + [anon_sym_ATa_COLON] = ACTIONS(169), + [anon_sym_ATb_COLON] = ACTIONS(169), + [anon_sym_ATB_COLON] = ACTIONS(169), + [anon_sym_ATe_COLON] = ACTIONS(169), + [anon_sym_ATF_COLON] = ACTIONS(169), + [anon_sym_ATi_COLON] = ACTIONS(169), + [anon_sym_ATk_COLON] = ACTIONS(169), + [anon_sym_ATo_COLON] = ACTIONS(169), + [anon_sym_ATr_COLON] = ACTIONS(169), + [anon_sym_ATf_COLON] = ACTIONS(169), + [anon_sym_ATs_COLON] = ACTIONS(169), + [anon_sym_ATv_COLON] = ACTIONS(169), + [anon_sym_ATx_COLON] = ACTIONS(169), + [anon_sym_PIPE_DOT] = ACTIONS(169), [anon_sym_DOLLAR] = ACTIONS(115), [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_SEMI] = ACTIONS(139), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(139), - [sym_html_redirect_operator] = ACTIONS(141), - [sym_html_append_operator] = ACTIONS(139), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_GT] = ACTIONS(171), + [anon_sym_GT_GT] = ACTIONS(169), + [sym_html_redirect_operator] = ACTIONS(171), + [sym_html_append_operator] = ACTIONS(169), [anon_sym_COMMA] = ACTIONS(119), [aux_sym_arg_identifier_token1] = ACTIONS(115), [anon_sym_SQUOTE] = ACTIONS(121), [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(139), + [anon_sym_BQUOTE] = ACTIONS(169), [sym__comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(139), + [sym_file_descriptor] = ACTIONS(169), }, [60] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(68), - [sym_args] = STATE(224), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(68), + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(69), + [sym_args] = STATE(253), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(69), [anon_sym_DQUOTE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(133), - [anon_sym_PIPEH] = ACTIONS(131), - [anon_sym_AT_AT_DOT] = ACTIONS(131), - [anon_sym_AT_AT_EQ] = ACTIONS(131), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(131), - [anon_sym_AT_AT] = ACTIONS(133), - [anon_sym_AT_ATc_COLON] = ACTIONS(131), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(131), - [anon_sym_AT_ATC] = ACTIONS(131), - [anon_sym_AT_ATdbt] = ACTIONS(133), - [anon_sym_AT_ATdbta] = ACTIONS(131), - [anon_sym_AT_ATdbtb] = ACTIONS(131), - [anon_sym_AT_ATdbts] = ACTIONS(131), - [anon_sym_AT_ATt] = ACTIONS(131), - [anon_sym_AT_ATb] = ACTIONS(131), - [anon_sym_AT_ATi] = ACTIONS(133), - [anon_sym_AT_ATii] = ACTIONS(131), - [anon_sym_AT_ATiS] = ACTIONS(133), - [anon_sym_AT_ATiSS] = ACTIONS(131), - [anon_sym_AT_ATis] = ACTIONS(131), - [anon_sym_AT_ATiz] = ACTIONS(131), - [anon_sym_AT_ATf] = ACTIONS(131), - [anon_sym_AT_ATF] = ACTIONS(131), - [anon_sym_AT_ATom] = ACTIONS(131), - [anon_sym_AT_ATdm] = ACTIONS(131), - [anon_sym_AT_ATr] = ACTIONS(131), - [anon_sym_AT_ATs_COLON] = ACTIONS(131), - [anon_sym_AT] = ACTIONS(133), - [anon_sym_AT_BANG] = ACTIONS(131), - [anon_sym_AT_LPAREN] = ACTIONS(131), - [anon_sym_ATa_COLON] = ACTIONS(131), - [anon_sym_ATb_COLON] = ACTIONS(131), - [anon_sym_ATB_COLON] = ACTIONS(131), - [anon_sym_ATe_COLON] = ACTIONS(131), - [anon_sym_ATF_COLON] = ACTIONS(131), - [anon_sym_ATi_COLON] = ACTIONS(131), - [anon_sym_ATk_COLON] = ACTIONS(131), - [anon_sym_ATo_COLON] = ACTIONS(131), - [anon_sym_ATr_COLON] = ACTIONS(131), - [anon_sym_ATf_COLON] = ACTIONS(131), - [anon_sym_ATs_COLON] = ACTIONS(131), - [anon_sym_ATv_COLON] = ACTIONS(131), - [anon_sym_ATx_COLON] = ACTIONS(131), - [anon_sym_PIPE_DOT] = ACTIONS(131), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_PIPE] = ACTIONS(129), + [anon_sym_PIPEH] = ACTIONS(127), + [anon_sym_AT_AT_DOT] = ACTIONS(127), + [anon_sym_AT_AT_EQ] = ACTIONS(127), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(127), + [anon_sym_AT_AT] = ACTIONS(129), + [anon_sym_AT_ATc_COLON] = ACTIONS(127), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(127), + [anon_sym_AT_ATC] = ACTIONS(127), + [anon_sym_AT_ATdbt] = ACTIONS(129), + [anon_sym_AT_ATdbta] = ACTIONS(127), + [anon_sym_AT_ATdbtb] = ACTIONS(127), + [anon_sym_AT_ATdbts] = ACTIONS(127), + [anon_sym_AT_ATt] = ACTIONS(127), + [anon_sym_AT_ATb] = ACTIONS(127), + [anon_sym_AT_ATi] = ACTIONS(129), + [anon_sym_AT_ATii] = ACTIONS(127), + [anon_sym_AT_ATiS] = ACTIONS(129), + [anon_sym_AT_ATiSS] = ACTIONS(127), + [anon_sym_AT_ATis] = ACTIONS(127), + [anon_sym_AT_ATiz] = ACTIONS(127), + [anon_sym_AT_ATf] = ACTIONS(127), + [anon_sym_AT_ATF] = ACTIONS(127), + [anon_sym_AT_ATom] = ACTIONS(127), + [anon_sym_AT_ATdm] = ACTIONS(127), + [anon_sym_AT_ATr] = ACTIONS(127), + [anon_sym_AT_ATs_COLON] = ACTIONS(127), + [anon_sym_AT] = ACTIONS(129), + [anon_sym_AT_BANG] = ACTIONS(127), + [anon_sym_AT_LPAREN] = ACTIONS(127), + [anon_sym_ATa_COLON] = ACTIONS(127), + [anon_sym_ATb_COLON] = ACTIONS(127), + [anon_sym_ATB_COLON] = ACTIONS(127), + [anon_sym_ATe_COLON] = ACTIONS(127), + [anon_sym_ATF_COLON] = ACTIONS(127), + [anon_sym_ATi_COLON] = ACTIONS(127), + [anon_sym_ATk_COLON] = ACTIONS(127), + [anon_sym_ATo_COLON] = ACTIONS(127), + [anon_sym_ATr_COLON] = ACTIONS(127), + [anon_sym_ATf_COLON] = ACTIONS(127), + [anon_sym_ATs_COLON] = ACTIONS(127), + [anon_sym_ATv_COLON] = ACTIONS(127), + [anon_sym_ATx_COLON] = ACTIONS(127), + [anon_sym_PIPE_DOT] = ACTIONS(127), [anon_sym_DOLLAR] = ACTIONS(115), [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_SEMI] = ACTIONS(131), - [anon_sym_GT] = ACTIONS(133), - [anon_sym_GT_GT] = ACTIONS(131), - [sym_html_redirect_operator] = ACTIONS(133), - [sym_html_append_operator] = ACTIONS(131), + [anon_sym_SEMI] = ACTIONS(127), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_GT_GT] = ACTIONS(127), + [sym_html_redirect_operator] = ACTIONS(129), + [sym_html_append_operator] = ACTIONS(127), [anon_sym_COMMA] = ACTIONS(119), [aux_sym_arg_identifier_token1] = ACTIONS(115), [anon_sym_SQUOTE] = ACTIONS(121), [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(125), + [anon_sym_BQUOTE] = ACTIONS(127), [sym__comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(131), + [sym_file_descriptor] = ACTIONS(127), }, [61] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(68), - [sym_args] = STATE(241), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(68), + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(69), + [sym_args] = STATE(217), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(69), + [anon_sym_DQUOTE] = ACTIONS(111), + [anon_sym_TILDE] = ACTIONS(127), + [anon_sym_PIPE] = ACTIONS(129), + [anon_sym_PIPEH] = ACTIONS(127), + [anon_sym_AT_AT_DOT] = ACTIONS(127), + [anon_sym_AT_AT_EQ] = ACTIONS(127), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(127), + [anon_sym_AT_AT] = ACTIONS(129), + [anon_sym_AT_ATc_COLON] = ACTIONS(127), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(127), + [anon_sym_AT_ATC] = ACTIONS(127), + [anon_sym_AT_ATdbt] = ACTIONS(129), + [anon_sym_AT_ATdbta] = ACTIONS(127), + [anon_sym_AT_ATdbtb] = ACTIONS(127), + [anon_sym_AT_ATdbts] = ACTIONS(127), + [anon_sym_AT_ATt] = ACTIONS(127), + [anon_sym_AT_ATb] = ACTIONS(127), + [anon_sym_AT_ATi] = ACTIONS(129), + [anon_sym_AT_ATii] = ACTIONS(127), + [anon_sym_AT_ATiS] = ACTIONS(129), + [anon_sym_AT_ATiSS] = ACTIONS(127), + [anon_sym_AT_ATis] = ACTIONS(127), + [anon_sym_AT_ATiz] = ACTIONS(127), + [anon_sym_AT_ATf] = ACTIONS(127), + [anon_sym_AT_ATF] = ACTIONS(127), + [anon_sym_AT_ATom] = ACTIONS(127), + [anon_sym_AT_ATdm] = ACTIONS(127), + [anon_sym_AT_ATr] = ACTIONS(127), + [anon_sym_AT_ATs_COLON] = ACTIONS(127), + [anon_sym_AT] = ACTIONS(129), + [anon_sym_AT_BANG] = ACTIONS(127), + [anon_sym_AT_LPAREN] = ACTIONS(127), + [anon_sym_ATa_COLON] = ACTIONS(127), + [anon_sym_ATb_COLON] = ACTIONS(127), + [anon_sym_ATB_COLON] = ACTIONS(127), + [anon_sym_ATe_COLON] = ACTIONS(127), + [anon_sym_ATF_COLON] = ACTIONS(127), + [anon_sym_ATi_COLON] = ACTIONS(127), + [anon_sym_ATk_COLON] = ACTIONS(127), + [anon_sym_ATo_COLON] = ACTIONS(127), + [anon_sym_ATr_COLON] = ACTIONS(127), + [anon_sym_ATf_COLON] = ACTIONS(127), + [anon_sym_ATs_COLON] = ACTIONS(127), + [anon_sym_ATv_COLON] = ACTIONS(127), + [anon_sym_ATx_COLON] = ACTIONS(127), + [anon_sym_PIPE_DOT] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(117), + [anon_sym_SEMI] = ACTIONS(127), + [anon_sym_GT] = ACTIONS(129), + [anon_sym_GT_GT] = ACTIONS(127), + [sym_html_redirect_operator] = ACTIONS(129), + [sym_html_append_operator] = ACTIONS(127), + [anon_sym_COMMA] = ACTIONS(119), + [aux_sym_arg_identifier_token1] = ACTIONS(115), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), + [anon_sym_BQUOTE] = ACTIONS(127), + [sym__comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(127), + }, + [62] = { + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(69), + [sym_args] = STATE(216), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(69), [anon_sym_DQUOTE] = ACTIONS(111), [anon_sym_TILDE] = ACTIONS(109), [anon_sym_PIPE] = ACTIONS(113), @@ -10793,588 +10941,586 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__comment] = ACTIONS(3), [sym_file_descriptor] = ACTIONS(109), }, - [62] = { - [sym_macro_content] = STATE(137), - [sym_macro_args] = STATE(204), - [sym__arg_with_paren] = STATE(311), - [sym__arg] = STATE(311), - [sym_arg] = STATE(268), - [sym_arg_identifier] = STATE(311), - [sym_double_quoted_arg] = STATE(311), - [sym_single_quoted_arg] = STATE(311), - [sym_cmd_substitution_arg] = STATE(311), - [sym_concatenation] = STATE(333), - [anon_sym_DQUOTE] = ACTIONS(153), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_PIPEH] = ACTIONS(151), - [anon_sym_AT_AT_DOT] = ACTIONS(151), - [anon_sym_AT_AT_EQ] = ACTIONS(151), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(151), - [anon_sym_AT_AT] = ACTIONS(155), - [anon_sym_AT_ATc_COLON] = ACTIONS(151), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(151), - [anon_sym_AT_ATC] = ACTIONS(151), - [anon_sym_AT_ATdbt] = ACTIONS(155), - [anon_sym_AT_ATdbta] = ACTIONS(151), - [anon_sym_AT_ATdbtb] = ACTIONS(151), - [anon_sym_AT_ATdbts] = ACTIONS(151), - [anon_sym_AT_ATt] = ACTIONS(151), - [anon_sym_AT_ATb] = ACTIONS(151), - [anon_sym_AT_ATi] = ACTIONS(155), - [anon_sym_AT_ATii] = ACTIONS(151), - [anon_sym_AT_ATiS] = ACTIONS(155), - [anon_sym_AT_ATiSS] = ACTIONS(151), - [anon_sym_AT_ATis] = ACTIONS(151), - [anon_sym_AT_ATiz] = ACTIONS(151), - [anon_sym_AT_ATf] = ACTIONS(151), - [anon_sym_AT_ATF] = ACTIONS(151), - [anon_sym_AT_ATom] = ACTIONS(151), - [anon_sym_AT_ATdm] = ACTIONS(151), - [anon_sym_AT_ATr] = ACTIONS(151), - [anon_sym_AT_ATs_COLON] = ACTIONS(151), - [anon_sym_AT] = ACTIONS(155), - [anon_sym_AT_BANG] = ACTIONS(151), - [anon_sym_AT_LPAREN] = ACTIONS(151), - [anon_sym_ATa_COLON] = ACTIONS(151), - [anon_sym_ATb_COLON] = ACTIONS(151), - [anon_sym_ATB_COLON] = ACTIONS(151), - [anon_sym_ATe_COLON] = ACTIONS(151), - [anon_sym_ATF_COLON] = ACTIONS(151), - [anon_sym_ATi_COLON] = ACTIONS(151), - [anon_sym_ATk_COLON] = ACTIONS(151), - [anon_sym_ATo_COLON] = ACTIONS(151), - [anon_sym_ATr_COLON] = ACTIONS(151), - [anon_sym_ATf_COLON] = ACTIONS(151), - [anon_sym_ATs_COLON] = ACTIONS(151), - [anon_sym_ATv_COLON] = ACTIONS(151), - [anon_sym_ATx_COLON] = ACTIONS(151), - [anon_sym_PIPE_DOT] = ACTIONS(151), - [anon_sym_DOLLAR] = ACTIONS(157), - [anon_sym_LPAREN] = ACTIONS(159), - [anon_sym_SEMI] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(151), - [sym_html_redirect_operator] = ACTIONS(155), - [sym_html_append_operator] = ACTIONS(151), - [anon_sym_COMMA] = ACTIONS(161), - [aux_sym_arg_identifier_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(165), - [anon_sym_BQUOTE] = ACTIONS(151), - [sym__comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(151), - }, [63] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(68), - [sym_args] = STATE(203), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(68), + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(69), + [sym_args] = STATE(237), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(69), [anon_sym_DQUOTE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(129), - [anon_sym_PIPEH] = ACTIONS(127), - [anon_sym_AT_AT_DOT] = ACTIONS(127), - [anon_sym_AT_AT_EQ] = ACTIONS(127), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(127), - [anon_sym_AT_AT] = ACTIONS(129), - [anon_sym_AT_ATc_COLON] = ACTIONS(127), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(127), - [anon_sym_AT_ATC] = ACTIONS(127), - [anon_sym_AT_ATdbt] = ACTIONS(129), - [anon_sym_AT_ATdbta] = ACTIONS(127), - [anon_sym_AT_ATdbtb] = ACTIONS(127), - [anon_sym_AT_ATdbts] = ACTIONS(127), - [anon_sym_AT_ATt] = ACTIONS(127), - [anon_sym_AT_ATb] = ACTIONS(127), - [anon_sym_AT_ATi] = ACTIONS(129), - [anon_sym_AT_ATii] = ACTIONS(127), - [anon_sym_AT_ATiS] = ACTIONS(129), - [anon_sym_AT_ATiSS] = ACTIONS(127), - [anon_sym_AT_ATis] = ACTIONS(127), - [anon_sym_AT_ATiz] = ACTIONS(127), - [anon_sym_AT_ATf] = ACTIONS(127), - [anon_sym_AT_ATF] = ACTIONS(127), - [anon_sym_AT_ATom] = ACTIONS(127), - [anon_sym_AT_ATdm] = ACTIONS(127), - [anon_sym_AT_ATr] = ACTIONS(127), - [anon_sym_AT_ATs_COLON] = ACTIONS(127), - [anon_sym_AT] = ACTIONS(129), - [anon_sym_AT_BANG] = ACTIONS(127), - [anon_sym_AT_LPAREN] = ACTIONS(127), - [anon_sym_ATa_COLON] = ACTIONS(127), - [anon_sym_ATb_COLON] = ACTIONS(127), - [anon_sym_ATB_COLON] = ACTIONS(127), - [anon_sym_ATe_COLON] = ACTIONS(127), - [anon_sym_ATF_COLON] = ACTIONS(127), - [anon_sym_ATi_COLON] = ACTIONS(127), - [anon_sym_ATk_COLON] = ACTIONS(127), - [anon_sym_ATo_COLON] = ACTIONS(127), - [anon_sym_ATr_COLON] = ACTIONS(127), - [anon_sym_ATf_COLON] = ACTIONS(127), - [anon_sym_ATs_COLON] = ACTIONS(127), - [anon_sym_ATv_COLON] = ACTIONS(127), - [anon_sym_ATx_COLON] = ACTIONS(127), - [anon_sym_PIPE_DOT] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(165), + [anon_sym_PIPE] = ACTIONS(167), + [anon_sym_PIPEH] = ACTIONS(165), + [anon_sym_AT_AT_DOT] = ACTIONS(165), + [anon_sym_AT_AT_EQ] = ACTIONS(165), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(165), + [anon_sym_AT_AT] = ACTIONS(167), + [anon_sym_AT_ATc_COLON] = ACTIONS(165), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(165), + [anon_sym_AT_ATC] = ACTIONS(165), + [anon_sym_AT_ATdbt] = ACTIONS(167), + [anon_sym_AT_ATdbta] = ACTIONS(165), + [anon_sym_AT_ATdbtb] = ACTIONS(165), + [anon_sym_AT_ATdbts] = ACTIONS(165), + [anon_sym_AT_ATt] = ACTIONS(165), + [anon_sym_AT_ATb] = ACTIONS(165), + [anon_sym_AT_ATi] = ACTIONS(167), + [anon_sym_AT_ATii] = ACTIONS(165), + [anon_sym_AT_ATiS] = ACTIONS(167), + [anon_sym_AT_ATiSS] = ACTIONS(165), + [anon_sym_AT_ATis] = ACTIONS(165), + [anon_sym_AT_ATiz] = ACTIONS(165), + [anon_sym_AT_ATf] = ACTIONS(165), + [anon_sym_AT_ATF] = ACTIONS(165), + [anon_sym_AT_ATom] = ACTIONS(165), + [anon_sym_AT_ATdm] = ACTIONS(165), + [anon_sym_AT_ATr] = ACTIONS(165), + [anon_sym_AT_ATs_COLON] = ACTIONS(165), + [anon_sym_AT] = ACTIONS(167), + [anon_sym_AT_BANG] = ACTIONS(165), + [anon_sym_AT_LPAREN] = ACTIONS(165), + [anon_sym_ATa_COLON] = ACTIONS(165), + [anon_sym_ATb_COLON] = ACTIONS(165), + [anon_sym_ATB_COLON] = ACTIONS(165), + [anon_sym_ATe_COLON] = ACTIONS(165), + [anon_sym_ATF_COLON] = ACTIONS(165), + [anon_sym_ATi_COLON] = ACTIONS(165), + [anon_sym_ATk_COLON] = ACTIONS(165), + [anon_sym_ATo_COLON] = ACTIONS(165), + [anon_sym_ATr_COLON] = ACTIONS(165), + [anon_sym_ATf_COLON] = ACTIONS(165), + [anon_sym_ATs_COLON] = ACTIONS(165), + [anon_sym_ATv_COLON] = ACTIONS(165), + [anon_sym_ATx_COLON] = ACTIONS(165), + [anon_sym_PIPE_DOT] = ACTIONS(165), [anon_sym_DOLLAR] = ACTIONS(115), [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_GT] = ACTIONS(129), - [anon_sym_GT_GT] = ACTIONS(127), - [sym_html_redirect_operator] = ACTIONS(129), - [sym_html_append_operator] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(165), + [anon_sym_GT] = ACTIONS(167), + [anon_sym_GT_GT] = ACTIONS(165), + [sym_html_redirect_operator] = ACTIONS(167), + [sym_html_append_operator] = ACTIONS(165), [anon_sym_COMMA] = ACTIONS(119), [aux_sym_arg_identifier_token1] = ACTIONS(115), [anon_sym_SQUOTE] = ACTIONS(121), [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_BQUOTE] = ACTIONS(165), [sym__comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(127), + [sym_file_descriptor] = ACTIONS(165), }, [64] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(68), - [sym_args] = STATE(173), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(68), + [sym_macro_content] = STATE(134), + [sym_macro_args] = STATE(256), + [sym__arg_with_paren] = STATE(319), + [sym__arg] = STATE(319), + [sym_arg] = STATE(275), + [sym_arg_identifier] = STATE(319), + [sym_double_quoted_arg] = STATE(319), + [sym_single_quoted_arg] = STATE(319), + [sym_cmd_substitution_arg] = STATE(319), + [sym_concatenation] = STATE(339), + [anon_sym_DQUOTE] = ACTIONS(141), + [anon_sym_TILDE] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_PIPEH] = ACTIONS(139), + [anon_sym_AT_AT_DOT] = ACTIONS(139), + [anon_sym_AT_AT_EQ] = ACTIONS(139), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(139), + [anon_sym_AT_AT] = ACTIONS(143), + [anon_sym_AT_ATc_COLON] = ACTIONS(139), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(139), + [anon_sym_AT_ATC] = ACTIONS(139), + [anon_sym_AT_ATdbt] = ACTIONS(143), + [anon_sym_AT_ATdbta] = ACTIONS(139), + [anon_sym_AT_ATdbtb] = ACTIONS(139), + [anon_sym_AT_ATdbts] = ACTIONS(139), + [anon_sym_AT_ATt] = ACTIONS(139), + [anon_sym_AT_ATb] = ACTIONS(139), + [anon_sym_AT_ATi] = ACTIONS(143), + [anon_sym_AT_ATii] = ACTIONS(139), + [anon_sym_AT_ATiS] = ACTIONS(143), + [anon_sym_AT_ATiSS] = ACTIONS(139), + [anon_sym_AT_ATis] = ACTIONS(139), + [anon_sym_AT_ATiz] = ACTIONS(139), + [anon_sym_AT_ATf] = ACTIONS(139), + [anon_sym_AT_ATF] = ACTIONS(139), + [anon_sym_AT_ATom] = ACTIONS(139), + [anon_sym_AT_ATdm] = ACTIONS(139), + [anon_sym_AT_ATr] = ACTIONS(139), + [anon_sym_AT_ATs_COLON] = ACTIONS(139), + [anon_sym_AT] = ACTIONS(143), + [anon_sym_AT_BANG] = ACTIONS(139), + [anon_sym_AT_LPAREN] = ACTIONS(139), + [anon_sym_ATa_COLON] = ACTIONS(139), + [anon_sym_ATb_COLON] = ACTIONS(139), + [anon_sym_ATB_COLON] = ACTIONS(139), + [anon_sym_ATe_COLON] = ACTIONS(139), + [anon_sym_ATF_COLON] = ACTIONS(139), + [anon_sym_ATi_COLON] = ACTIONS(139), + [anon_sym_ATk_COLON] = ACTIONS(139), + [anon_sym_ATo_COLON] = ACTIONS(139), + [anon_sym_ATr_COLON] = ACTIONS(139), + [anon_sym_ATf_COLON] = ACTIONS(139), + [anon_sym_ATs_COLON] = ACTIONS(139), + [anon_sym_ATv_COLON] = ACTIONS(139), + [anon_sym_ATx_COLON] = ACTIONS(139), + [anon_sym_PIPE_DOT] = ACTIONS(139), + [anon_sym_DOLLAR] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(139), + [sym_html_redirect_operator] = ACTIONS(143), + [sym_html_append_operator] = ACTIONS(139), + [anon_sym_COMMA] = ACTIONS(149), + [aux_sym_arg_identifier_token1] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(151), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(153), + [anon_sym_BQUOTE] = ACTIONS(139), + [sym__comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(139), + }, + [65] = { + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(69), + [sym_args] = STATE(183), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(69), [anon_sym_DQUOTE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(169), - [anon_sym_PIPE] = ACTIONS(171), - [anon_sym_PIPEH] = ACTIONS(169), - [anon_sym_AT_AT_DOT] = ACTIONS(169), - [anon_sym_AT_AT_EQ] = ACTIONS(169), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(169), - [anon_sym_AT_AT] = ACTIONS(171), - [anon_sym_AT_ATc_COLON] = ACTIONS(169), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(169), - [anon_sym_AT_ATC] = ACTIONS(169), - [anon_sym_AT_ATdbt] = ACTIONS(171), - [anon_sym_AT_ATdbta] = ACTIONS(169), - [anon_sym_AT_ATdbtb] = ACTIONS(169), - [anon_sym_AT_ATdbts] = ACTIONS(169), - [anon_sym_AT_ATt] = ACTIONS(169), - [anon_sym_AT_ATb] = ACTIONS(169), - [anon_sym_AT_ATi] = ACTIONS(171), - [anon_sym_AT_ATii] = ACTIONS(169), - [anon_sym_AT_ATiS] = ACTIONS(171), - [anon_sym_AT_ATiSS] = ACTIONS(169), - [anon_sym_AT_ATis] = ACTIONS(169), - [anon_sym_AT_ATiz] = ACTIONS(169), - [anon_sym_AT_ATf] = ACTIONS(169), - [anon_sym_AT_ATF] = ACTIONS(169), - [anon_sym_AT_ATom] = ACTIONS(169), - [anon_sym_AT_ATdm] = ACTIONS(169), - [anon_sym_AT_ATr] = ACTIONS(169), - [anon_sym_AT_ATs_COLON] = ACTIONS(169), - [anon_sym_AT] = ACTIONS(171), - [anon_sym_AT_BANG] = ACTIONS(169), - [anon_sym_AT_LPAREN] = ACTIONS(169), - [anon_sym_ATa_COLON] = ACTIONS(169), - [anon_sym_ATb_COLON] = ACTIONS(169), - [anon_sym_ATB_COLON] = ACTIONS(169), - [anon_sym_ATe_COLON] = ACTIONS(169), - [anon_sym_ATF_COLON] = ACTIONS(169), - [anon_sym_ATi_COLON] = ACTIONS(169), - [anon_sym_ATk_COLON] = ACTIONS(169), - [anon_sym_ATo_COLON] = ACTIONS(169), - [anon_sym_ATr_COLON] = ACTIONS(169), - [anon_sym_ATf_COLON] = ACTIONS(169), - [anon_sym_ATs_COLON] = ACTIONS(169), - [anon_sym_ATv_COLON] = ACTIONS(169), - [anon_sym_ATx_COLON] = ACTIONS(169), - [anon_sym_PIPE_DOT] = ACTIONS(169), + [anon_sym_TILDE] = ACTIONS(131), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_PIPEH] = ACTIONS(131), + [anon_sym_AT_AT_DOT] = ACTIONS(131), + [anon_sym_AT_AT_EQ] = ACTIONS(131), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(131), + [anon_sym_AT_AT] = ACTIONS(133), + [anon_sym_AT_ATc_COLON] = ACTIONS(131), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(131), + [anon_sym_AT_ATC] = ACTIONS(131), + [anon_sym_AT_ATdbt] = ACTIONS(133), + [anon_sym_AT_ATdbta] = ACTIONS(131), + [anon_sym_AT_ATdbtb] = ACTIONS(131), + [anon_sym_AT_ATdbts] = ACTIONS(131), + [anon_sym_AT_ATt] = ACTIONS(131), + [anon_sym_AT_ATb] = ACTIONS(131), + [anon_sym_AT_ATi] = ACTIONS(133), + [anon_sym_AT_ATii] = ACTIONS(131), + [anon_sym_AT_ATiS] = ACTIONS(133), + [anon_sym_AT_ATiSS] = ACTIONS(131), + [anon_sym_AT_ATis] = ACTIONS(131), + [anon_sym_AT_ATiz] = ACTIONS(131), + [anon_sym_AT_ATf] = ACTIONS(131), + [anon_sym_AT_ATF] = ACTIONS(131), + [anon_sym_AT_ATom] = ACTIONS(131), + [anon_sym_AT_ATdm] = ACTIONS(131), + [anon_sym_AT_ATr] = ACTIONS(131), + [anon_sym_AT_ATs_COLON] = ACTIONS(131), + [anon_sym_AT] = ACTIONS(133), + [anon_sym_AT_BANG] = ACTIONS(131), + [anon_sym_AT_LPAREN] = ACTIONS(131), + [anon_sym_ATa_COLON] = ACTIONS(131), + [anon_sym_ATb_COLON] = ACTIONS(131), + [anon_sym_ATB_COLON] = ACTIONS(131), + [anon_sym_ATe_COLON] = ACTIONS(131), + [anon_sym_ATF_COLON] = ACTIONS(131), + [anon_sym_ATi_COLON] = ACTIONS(131), + [anon_sym_ATk_COLON] = ACTIONS(131), + [anon_sym_ATo_COLON] = ACTIONS(131), + [anon_sym_ATr_COLON] = ACTIONS(131), + [anon_sym_ATf_COLON] = ACTIONS(131), + [anon_sym_ATs_COLON] = ACTIONS(131), + [anon_sym_ATv_COLON] = ACTIONS(131), + [anon_sym_ATx_COLON] = ACTIONS(131), + [anon_sym_PIPE_DOT] = ACTIONS(131), [anon_sym_DOLLAR] = ACTIONS(115), [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_GT] = ACTIONS(171), - [anon_sym_GT_GT] = ACTIONS(169), - [sym_html_redirect_operator] = ACTIONS(171), - [sym_html_append_operator] = ACTIONS(169), + [anon_sym_SEMI] = ACTIONS(131), + [anon_sym_GT] = ACTIONS(133), + [anon_sym_GT_GT] = ACTIONS(131), + [sym_html_redirect_operator] = ACTIONS(133), + [sym_html_append_operator] = ACTIONS(131), [anon_sym_COMMA] = ACTIONS(119), [aux_sym_arg_identifier_token1] = ACTIONS(115), [anon_sym_SQUOTE] = ACTIONS(121), [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), [anon_sym_BQUOTE] = ACTIONS(125), [sym__comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(169), - }, - [65] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(68), - [sym_args] = STATE(178), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(68), - [anon_sym_DQUOTE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(143), - [anon_sym_PIPE] = ACTIONS(145), - [anon_sym_PIPEH] = ACTIONS(143), - [anon_sym_AT_AT_DOT] = ACTIONS(143), - [anon_sym_AT_AT_EQ] = ACTIONS(143), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(143), - [anon_sym_AT_AT] = ACTIONS(145), - [anon_sym_AT_ATc_COLON] = ACTIONS(143), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(143), - [anon_sym_AT_ATC] = ACTIONS(143), - [anon_sym_AT_ATdbt] = ACTIONS(145), - [anon_sym_AT_ATdbta] = ACTIONS(143), - [anon_sym_AT_ATdbtb] = ACTIONS(143), - [anon_sym_AT_ATdbts] = ACTIONS(143), - [anon_sym_AT_ATt] = ACTIONS(143), - [anon_sym_AT_ATb] = ACTIONS(143), - [anon_sym_AT_ATi] = ACTIONS(145), - [anon_sym_AT_ATii] = ACTIONS(143), - [anon_sym_AT_ATiS] = ACTIONS(145), - [anon_sym_AT_ATiSS] = ACTIONS(143), - [anon_sym_AT_ATis] = ACTIONS(143), - [anon_sym_AT_ATiz] = ACTIONS(143), - [anon_sym_AT_ATf] = ACTIONS(143), - [anon_sym_AT_ATF] = ACTIONS(143), - [anon_sym_AT_ATom] = ACTIONS(143), - [anon_sym_AT_ATdm] = ACTIONS(143), - [anon_sym_AT_ATr] = ACTIONS(143), - [anon_sym_AT_ATs_COLON] = ACTIONS(143), - [anon_sym_AT] = ACTIONS(145), - [anon_sym_AT_BANG] = ACTIONS(143), - [anon_sym_AT_LPAREN] = ACTIONS(143), - [anon_sym_ATa_COLON] = ACTIONS(143), - [anon_sym_ATb_COLON] = ACTIONS(143), - [anon_sym_ATB_COLON] = ACTIONS(143), - [anon_sym_ATe_COLON] = ACTIONS(143), - [anon_sym_ATF_COLON] = ACTIONS(143), - [anon_sym_ATi_COLON] = ACTIONS(143), - [anon_sym_ATk_COLON] = ACTIONS(143), - [anon_sym_ATo_COLON] = ACTIONS(143), - [anon_sym_ATr_COLON] = ACTIONS(143), - [anon_sym_ATf_COLON] = ACTIONS(143), - [anon_sym_ATs_COLON] = ACTIONS(143), - [anon_sym_ATv_COLON] = ACTIONS(143), - [anon_sym_ATx_COLON] = ACTIONS(143), - [anon_sym_PIPE_DOT] = ACTIONS(143), - [anon_sym_DOLLAR] = ACTIONS(115), - [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_SEMI] = ACTIONS(143), - [anon_sym_GT] = ACTIONS(145), - [anon_sym_GT_GT] = ACTIONS(143), - [sym_html_redirect_operator] = ACTIONS(145), - [sym_html_append_operator] = ACTIONS(143), - [anon_sym_COMMA] = ACTIONS(119), - [aux_sym_arg_identifier_token1] = ACTIONS(115), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(143), - [sym__comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(143), + [sym_file_descriptor] = ACTIONS(131), }, [66] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(68), - [sym_args] = STATE(248), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(68), + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(69), + [sym_args] = STATE(182), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(69), [anon_sym_DQUOTE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(127), - [anon_sym_PIPE] = ACTIONS(129), - [anon_sym_PIPEH] = ACTIONS(127), - [anon_sym_AT_AT_DOT] = ACTIONS(127), - [anon_sym_AT_AT_EQ] = ACTIONS(127), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(127), - [anon_sym_AT_AT] = ACTIONS(129), - [anon_sym_AT_ATc_COLON] = ACTIONS(127), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(127), - [anon_sym_AT_ATC] = ACTIONS(127), - [anon_sym_AT_ATdbt] = ACTIONS(129), - [anon_sym_AT_ATdbta] = ACTIONS(127), - [anon_sym_AT_ATdbtb] = ACTIONS(127), - [anon_sym_AT_ATdbts] = ACTIONS(127), - [anon_sym_AT_ATt] = ACTIONS(127), - [anon_sym_AT_ATb] = ACTIONS(127), - [anon_sym_AT_ATi] = ACTIONS(129), - [anon_sym_AT_ATii] = ACTIONS(127), - [anon_sym_AT_ATiS] = ACTIONS(129), - [anon_sym_AT_ATiSS] = ACTIONS(127), - [anon_sym_AT_ATis] = ACTIONS(127), - [anon_sym_AT_ATiz] = ACTIONS(127), - [anon_sym_AT_ATf] = ACTIONS(127), - [anon_sym_AT_ATF] = ACTIONS(127), - [anon_sym_AT_ATom] = ACTIONS(127), - [anon_sym_AT_ATdm] = ACTIONS(127), - [anon_sym_AT_ATr] = ACTIONS(127), - [anon_sym_AT_ATs_COLON] = ACTIONS(127), - [anon_sym_AT] = ACTIONS(129), - [anon_sym_AT_BANG] = ACTIONS(127), - [anon_sym_AT_LPAREN] = ACTIONS(127), - [anon_sym_ATa_COLON] = ACTIONS(127), - [anon_sym_ATb_COLON] = ACTIONS(127), - [anon_sym_ATB_COLON] = ACTIONS(127), - [anon_sym_ATe_COLON] = ACTIONS(127), - [anon_sym_ATF_COLON] = ACTIONS(127), - [anon_sym_ATi_COLON] = ACTIONS(127), - [anon_sym_ATk_COLON] = ACTIONS(127), - [anon_sym_ATo_COLON] = ACTIONS(127), - [anon_sym_ATr_COLON] = ACTIONS(127), - [anon_sym_ATf_COLON] = ACTIONS(127), - [anon_sym_ATs_COLON] = ACTIONS(127), - [anon_sym_ATv_COLON] = ACTIONS(127), - [anon_sym_ATx_COLON] = ACTIONS(127), - [anon_sym_PIPE_DOT] = ACTIONS(127), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_PIPE] = ACTIONS(137), + [anon_sym_PIPEH] = ACTIONS(135), + [anon_sym_AT_AT_DOT] = ACTIONS(135), + [anon_sym_AT_AT_EQ] = ACTIONS(135), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(135), + [anon_sym_AT_AT] = ACTIONS(137), + [anon_sym_AT_ATc_COLON] = ACTIONS(135), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(135), + [anon_sym_AT_ATC] = ACTIONS(135), + [anon_sym_AT_ATdbt] = ACTIONS(137), + [anon_sym_AT_ATdbta] = ACTIONS(135), + [anon_sym_AT_ATdbtb] = ACTIONS(135), + [anon_sym_AT_ATdbts] = ACTIONS(135), + [anon_sym_AT_ATt] = ACTIONS(135), + [anon_sym_AT_ATb] = ACTIONS(135), + [anon_sym_AT_ATi] = ACTIONS(137), + [anon_sym_AT_ATii] = ACTIONS(135), + [anon_sym_AT_ATiS] = ACTIONS(137), + [anon_sym_AT_ATiSS] = ACTIONS(135), + [anon_sym_AT_ATis] = ACTIONS(135), + [anon_sym_AT_ATiz] = ACTIONS(135), + [anon_sym_AT_ATf] = ACTIONS(135), + [anon_sym_AT_ATF] = ACTIONS(135), + [anon_sym_AT_ATom] = ACTIONS(135), + [anon_sym_AT_ATdm] = ACTIONS(135), + [anon_sym_AT_ATr] = ACTIONS(135), + [anon_sym_AT_ATs_COLON] = ACTIONS(135), + [anon_sym_AT] = ACTIONS(137), + [anon_sym_AT_BANG] = ACTIONS(135), + [anon_sym_AT_LPAREN] = ACTIONS(135), + [anon_sym_ATa_COLON] = ACTIONS(135), + [anon_sym_ATb_COLON] = ACTIONS(135), + [anon_sym_ATB_COLON] = ACTIONS(135), + [anon_sym_ATe_COLON] = ACTIONS(135), + [anon_sym_ATF_COLON] = ACTIONS(135), + [anon_sym_ATi_COLON] = ACTIONS(135), + [anon_sym_ATk_COLON] = ACTIONS(135), + [anon_sym_ATo_COLON] = ACTIONS(135), + [anon_sym_ATr_COLON] = ACTIONS(135), + [anon_sym_ATf_COLON] = ACTIONS(135), + [anon_sym_ATs_COLON] = ACTIONS(135), + [anon_sym_ATv_COLON] = ACTIONS(135), + [anon_sym_ATx_COLON] = ACTIONS(135), + [anon_sym_PIPE_DOT] = ACTIONS(135), [anon_sym_DOLLAR] = ACTIONS(115), [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_SEMI] = ACTIONS(127), - [anon_sym_GT] = ACTIONS(129), - [anon_sym_GT_GT] = ACTIONS(127), - [sym_html_redirect_operator] = ACTIONS(129), - [sym_html_append_operator] = ACTIONS(127), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_GT] = ACTIONS(137), + [anon_sym_GT_GT] = ACTIONS(135), + [sym_html_redirect_operator] = ACTIONS(137), + [sym_html_append_operator] = ACTIONS(135), [anon_sym_COMMA] = ACTIONS(119), [aux_sym_arg_identifier_token1] = ACTIONS(115), [anon_sym_SQUOTE] = ACTIONS(121), [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(127), + [anon_sym_BQUOTE] = ACTIONS(125), [sym__comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(127), + [sym_file_descriptor] = ACTIONS(135), }, [67] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(68), - [sym_args] = STATE(252), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(68), + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(69), + [sym_args] = STATE(255), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(69), [anon_sym_DQUOTE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(149), - [anon_sym_PIPEH] = ACTIONS(147), - [anon_sym_AT_AT_DOT] = ACTIONS(147), - [anon_sym_AT_AT_EQ] = ACTIONS(147), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(147), - [anon_sym_AT_AT] = ACTIONS(149), - [anon_sym_AT_ATc_COLON] = ACTIONS(147), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(147), - [anon_sym_AT_ATC] = ACTIONS(147), - [anon_sym_AT_ATdbt] = ACTIONS(149), - [anon_sym_AT_ATdbta] = ACTIONS(147), - [anon_sym_AT_ATdbtb] = ACTIONS(147), - [anon_sym_AT_ATdbts] = ACTIONS(147), - [anon_sym_AT_ATt] = ACTIONS(147), - [anon_sym_AT_ATb] = ACTIONS(147), - [anon_sym_AT_ATi] = ACTIONS(149), - [anon_sym_AT_ATii] = ACTIONS(147), - [anon_sym_AT_ATiS] = ACTIONS(149), - [anon_sym_AT_ATiSS] = ACTIONS(147), - [anon_sym_AT_ATis] = ACTIONS(147), - [anon_sym_AT_ATiz] = ACTIONS(147), - [anon_sym_AT_ATf] = ACTIONS(147), - [anon_sym_AT_ATF] = ACTIONS(147), - [anon_sym_AT_ATom] = ACTIONS(147), - [anon_sym_AT_ATdm] = ACTIONS(147), - [anon_sym_AT_ATr] = ACTIONS(147), - [anon_sym_AT_ATs_COLON] = ACTIONS(147), - [anon_sym_AT] = ACTIONS(149), - [anon_sym_AT_BANG] = ACTIONS(147), - [anon_sym_AT_LPAREN] = ACTIONS(147), - [anon_sym_ATa_COLON] = ACTIONS(147), - [anon_sym_ATb_COLON] = ACTIONS(147), - [anon_sym_ATB_COLON] = ACTIONS(147), - [anon_sym_ATe_COLON] = ACTIONS(147), - [anon_sym_ATF_COLON] = ACTIONS(147), - [anon_sym_ATi_COLON] = ACTIONS(147), - [anon_sym_ATk_COLON] = ACTIONS(147), - [anon_sym_ATo_COLON] = ACTIONS(147), - [anon_sym_ATr_COLON] = ACTIONS(147), - [anon_sym_ATf_COLON] = ACTIONS(147), - [anon_sym_ATs_COLON] = ACTIONS(147), - [anon_sym_ATv_COLON] = ACTIONS(147), - [anon_sym_ATx_COLON] = ACTIONS(147), - [anon_sym_PIPE_DOT] = ACTIONS(147), + [anon_sym_TILDE] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(159), + [anon_sym_PIPEH] = ACTIONS(157), + [anon_sym_AT_AT_DOT] = ACTIONS(157), + [anon_sym_AT_AT_EQ] = ACTIONS(157), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(157), + [anon_sym_AT_AT] = ACTIONS(159), + [anon_sym_AT_ATc_COLON] = ACTIONS(157), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(157), + [anon_sym_AT_ATC] = ACTIONS(157), + [anon_sym_AT_ATdbt] = ACTIONS(159), + [anon_sym_AT_ATdbta] = ACTIONS(157), + [anon_sym_AT_ATdbtb] = ACTIONS(157), + [anon_sym_AT_ATdbts] = ACTIONS(157), + [anon_sym_AT_ATt] = ACTIONS(157), + [anon_sym_AT_ATb] = ACTIONS(157), + [anon_sym_AT_ATi] = ACTIONS(159), + [anon_sym_AT_ATii] = ACTIONS(157), + [anon_sym_AT_ATiS] = ACTIONS(159), + [anon_sym_AT_ATiSS] = ACTIONS(157), + [anon_sym_AT_ATis] = ACTIONS(157), + [anon_sym_AT_ATiz] = ACTIONS(157), + [anon_sym_AT_ATf] = ACTIONS(157), + [anon_sym_AT_ATF] = ACTIONS(157), + [anon_sym_AT_ATom] = ACTIONS(157), + [anon_sym_AT_ATdm] = ACTIONS(157), + [anon_sym_AT_ATr] = ACTIONS(157), + [anon_sym_AT_ATs_COLON] = ACTIONS(157), + [anon_sym_AT] = ACTIONS(159), + [anon_sym_AT_BANG] = ACTIONS(157), + [anon_sym_AT_LPAREN] = ACTIONS(157), + [anon_sym_ATa_COLON] = ACTIONS(157), + [anon_sym_ATb_COLON] = ACTIONS(157), + [anon_sym_ATB_COLON] = ACTIONS(157), + [anon_sym_ATe_COLON] = ACTIONS(157), + [anon_sym_ATF_COLON] = ACTIONS(157), + [anon_sym_ATi_COLON] = ACTIONS(157), + [anon_sym_ATk_COLON] = ACTIONS(157), + [anon_sym_ATo_COLON] = ACTIONS(157), + [anon_sym_ATr_COLON] = ACTIONS(157), + [anon_sym_ATf_COLON] = ACTIONS(157), + [anon_sym_ATs_COLON] = ACTIONS(157), + [anon_sym_ATv_COLON] = ACTIONS(157), + [anon_sym_ATx_COLON] = ACTIONS(157), + [anon_sym_PIPE_DOT] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(115), [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_SEMI] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(149), - [anon_sym_GT_GT] = ACTIONS(147), - [sym_html_redirect_operator] = ACTIONS(149), - [sym_html_append_operator] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(159), + [anon_sym_GT_GT] = ACTIONS(157), + [sym_html_redirect_operator] = ACTIONS(159), + [sym_html_append_operator] = ACTIONS(157), [anon_sym_COMMA] = ACTIONS(119), [aux_sym_arg_identifier_token1] = ACTIONS(115), [anon_sym_SQUOTE] = ACTIONS(121), [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(147), + [anon_sym_BQUOTE] = ACTIONS(157), [sym__comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(147), + [sym_file_descriptor] = ACTIONS(157), }, [68] = { - [sym__arg_with_paren] = STATE(76), - [sym__arg] = STATE(76), - [sym_arg] = STATE(54), - [sym_arg_identifier] = STATE(76), - [sym_double_quoted_arg] = STATE(76), - [sym_single_quoted_arg] = STATE(76), - [sym_cmd_substitution_arg] = STATE(76), - [sym_concatenation] = STATE(91), - [aux_sym_args_repeat1] = STATE(54), + [sym__Cf_args] = STATE(223), + [sym__arg_with_paren] = STATE(387), + [sym__arg] = STATE(387), + [sym_arg] = STATE(341), + [sym_arg_identifier] = STATE(387), + [sym_double_quoted_arg] = STATE(387), + [sym_single_quoted_arg] = STATE(387), + [sym_cmd_substitution_arg] = STATE(387), + [sym_concatenation] = STATE(405), + [anon_sym_DQUOTE] = ACTIONS(204), + [anon_sym_TILDE] = ACTIONS(202), + [anon_sym_PIPE] = ACTIONS(206), + [anon_sym_PIPEH] = ACTIONS(202), + [anon_sym_AT_AT_DOT] = ACTIONS(202), + [anon_sym_AT_AT_EQ] = ACTIONS(202), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(202), + [anon_sym_AT_AT] = ACTIONS(206), + [anon_sym_AT_ATc_COLON] = ACTIONS(202), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(202), + [anon_sym_AT_ATC] = ACTIONS(202), + [anon_sym_AT_ATdbt] = ACTIONS(206), + [anon_sym_AT_ATdbta] = ACTIONS(202), + [anon_sym_AT_ATdbtb] = ACTIONS(202), + [anon_sym_AT_ATdbts] = ACTIONS(202), + [anon_sym_AT_ATt] = ACTIONS(202), + [anon_sym_AT_ATb] = ACTIONS(202), + [anon_sym_AT_ATi] = ACTIONS(206), + [anon_sym_AT_ATii] = ACTIONS(202), + [anon_sym_AT_ATiS] = ACTIONS(206), + [anon_sym_AT_ATiSS] = ACTIONS(202), + [anon_sym_AT_ATis] = ACTIONS(202), + [anon_sym_AT_ATiz] = ACTIONS(202), + [anon_sym_AT_ATf] = ACTIONS(202), + [anon_sym_AT_ATF] = ACTIONS(202), + [anon_sym_AT_ATom] = ACTIONS(202), + [anon_sym_AT_ATdm] = ACTIONS(202), + [anon_sym_AT_ATr] = ACTIONS(202), + [anon_sym_AT_ATs_COLON] = ACTIONS(202), + [anon_sym_AT] = ACTIONS(206), + [anon_sym_AT_BANG] = ACTIONS(202), + [anon_sym_AT_LPAREN] = ACTIONS(202), + [anon_sym_ATa_COLON] = ACTIONS(202), + [anon_sym_ATb_COLON] = ACTIONS(202), + [anon_sym_ATB_COLON] = ACTIONS(202), + [anon_sym_ATe_COLON] = ACTIONS(202), + [anon_sym_ATF_COLON] = ACTIONS(202), + [anon_sym_ATi_COLON] = ACTIONS(202), + [anon_sym_ATk_COLON] = ACTIONS(202), + [anon_sym_ATo_COLON] = ACTIONS(202), + [anon_sym_ATr_COLON] = ACTIONS(202), + [anon_sym_ATf_COLON] = ACTIONS(202), + [anon_sym_ATs_COLON] = ACTIONS(202), + [anon_sym_ATv_COLON] = ACTIONS(202), + [anon_sym_ATx_COLON] = ACTIONS(202), + [anon_sym_PIPE_DOT] = ACTIONS(202), + [anon_sym_DOLLAR] = ACTIONS(208), + [anon_sym_LPAREN] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(202), + [anon_sym_GT] = ACTIONS(206), + [anon_sym_GT_GT] = ACTIONS(202), + [sym_html_redirect_operator] = ACTIONS(206), + [sym_html_append_operator] = ACTIONS(202), + [anon_sym_COMMA] = ACTIONS(212), + [aux_sym_arg_identifier_token1] = ACTIONS(208), + [anon_sym_SQUOTE] = ACTIONS(214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), + [anon_sym_BQUOTE] = ACTIONS(202), + [sym__comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(202), + }, + [69] = { + [sym__arg_with_paren] = STATE(74), + [sym__arg] = STATE(74), + [sym_arg] = STATE(55), + [sym_arg_identifier] = STATE(74), + [sym_double_quoted_arg] = STATE(74), + [sym_single_quoted_arg] = STATE(74), + [sym_cmd_substitution_arg] = STATE(74), + [sym_concatenation] = STATE(87), + [aux_sym_args_repeat1] = STATE(55), [anon_sym_DQUOTE] = ACTIONS(111), - [anon_sym_TILDE] = ACTIONS(216), - [anon_sym_PIPE] = ACTIONS(218), - [anon_sym_PIPEH] = ACTIONS(216), - [anon_sym_AT_AT_DOT] = ACTIONS(216), - [anon_sym_AT_AT_EQ] = ACTIONS(216), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(216), - [anon_sym_AT_AT] = ACTIONS(218), - [anon_sym_AT_ATc_COLON] = ACTIONS(216), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(216), - [anon_sym_AT_ATC] = ACTIONS(216), - [anon_sym_AT_ATdbt] = ACTIONS(218), - [anon_sym_AT_ATdbta] = ACTIONS(216), - [anon_sym_AT_ATdbtb] = ACTIONS(216), - [anon_sym_AT_ATdbts] = ACTIONS(216), - [anon_sym_AT_ATt] = ACTIONS(216), - [anon_sym_AT_ATb] = ACTIONS(216), - [anon_sym_AT_ATi] = ACTIONS(218), - [anon_sym_AT_ATii] = ACTIONS(216), - [anon_sym_AT_ATiS] = ACTIONS(218), - [anon_sym_AT_ATiSS] = ACTIONS(216), - [anon_sym_AT_ATis] = ACTIONS(216), - [anon_sym_AT_ATiz] = ACTIONS(216), - [anon_sym_AT_ATf] = ACTIONS(216), - [anon_sym_AT_ATF] = ACTIONS(216), - [anon_sym_AT_ATom] = ACTIONS(216), - [anon_sym_AT_ATdm] = ACTIONS(216), - [anon_sym_AT_ATr] = ACTIONS(216), - [anon_sym_AT_ATs_COLON] = ACTIONS(216), - [anon_sym_AT] = ACTIONS(218), - [anon_sym_AT_BANG] = ACTIONS(216), - [anon_sym_AT_LPAREN] = ACTIONS(216), - [anon_sym_ATa_COLON] = ACTIONS(216), - [anon_sym_ATb_COLON] = ACTIONS(216), - [anon_sym_ATB_COLON] = ACTIONS(216), - [anon_sym_ATe_COLON] = ACTIONS(216), - [anon_sym_ATF_COLON] = ACTIONS(216), - [anon_sym_ATi_COLON] = ACTIONS(216), - [anon_sym_ATk_COLON] = ACTIONS(216), - [anon_sym_ATo_COLON] = ACTIONS(216), - [anon_sym_ATr_COLON] = ACTIONS(216), - [anon_sym_ATf_COLON] = ACTIONS(216), - [anon_sym_ATs_COLON] = ACTIONS(216), - [anon_sym_ATv_COLON] = ACTIONS(216), - [anon_sym_ATx_COLON] = ACTIONS(216), - [anon_sym_PIPE_DOT] = ACTIONS(216), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_PIPE] = ACTIONS(175), + [anon_sym_PIPEH] = ACTIONS(173), + [anon_sym_AT_AT_DOT] = ACTIONS(173), + [anon_sym_AT_AT_EQ] = ACTIONS(173), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(173), + [anon_sym_AT_AT] = ACTIONS(175), + [anon_sym_AT_ATc_COLON] = ACTIONS(173), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(173), + [anon_sym_AT_ATC] = ACTIONS(173), + [anon_sym_AT_ATdbt] = ACTIONS(175), + [anon_sym_AT_ATdbta] = ACTIONS(173), + [anon_sym_AT_ATdbtb] = ACTIONS(173), + [anon_sym_AT_ATdbts] = ACTIONS(173), + [anon_sym_AT_ATt] = ACTIONS(173), + [anon_sym_AT_ATb] = ACTIONS(173), + [anon_sym_AT_ATi] = ACTIONS(175), + [anon_sym_AT_ATii] = ACTIONS(173), + [anon_sym_AT_ATiS] = ACTIONS(175), + [anon_sym_AT_ATiSS] = ACTIONS(173), + [anon_sym_AT_ATis] = ACTIONS(173), + [anon_sym_AT_ATiz] = ACTIONS(173), + [anon_sym_AT_ATf] = ACTIONS(173), + [anon_sym_AT_ATF] = ACTIONS(173), + [anon_sym_AT_ATom] = ACTIONS(173), + [anon_sym_AT_ATdm] = ACTIONS(173), + [anon_sym_AT_ATr] = ACTIONS(173), + [anon_sym_AT_ATs_COLON] = ACTIONS(173), + [anon_sym_AT] = ACTIONS(175), + [anon_sym_AT_BANG] = ACTIONS(173), + [anon_sym_AT_LPAREN] = ACTIONS(173), + [anon_sym_ATa_COLON] = ACTIONS(173), + [anon_sym_ATb_COLON] = ACTIONS(173), + [anon_sym_ATB_COLON] = ACTIONS(173), + [anon_sym_ATe_COLON] = ACTIONS(173), + [anon_sym_ATF_COLON] = ACTIONS(173), + [anon_sym_ATi_COLON] = ACTIONS(173), + [anon_sym_ATk_COLON] = ACTIONS(173), + [anon_sym_ATo_COLON] = ACTIONS(173), + [anon_sym_ATr_COLON] = ACTIONS(173), + [anon_sym_ATf_COLON] = ACTIONS(173), + [anon_sym_ATs_COLON] = ACTIONS(173), + [anon_sym_ATv_COLON] = ACTIONS(173), + [anon_sym_ATx_COLON] = ACTIONS(173), + [anon_sym_PIPE_DOT] = ACTIONS(173), [anon_sym_DOLLAR] = ACTIONS(115), [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_SEMI] = ACTIONS(216), - [anon_sym_GT] = ACTIONS(218), - [anon_sym_GT_GT] = ACTIONS(216), - [sym_html_redirect_operator] = ACTIONS(218), - [sym_html_append_operator] = ACTIONS(216), + [anon_sym_SEMI] = ACTIONS(173), + [anon_sym_GT] = ACTIONS(175), + [anon_sym_GT_GT] = ACTIONS(173), + [sym_html_redirect_operator] = ACTIONS(175), + [sym_html_append_operator] = ACTIONS(173), [anon_sym_COMMA] = ACTIONS(119), [aux_sym_arg_identifier_token1] = ACTIONS(115), [anon_sym_SQUOTE] = ACTIONS(121), [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_BQUOTE] = ACTIONS(216), + [anon_sym_BQUOTE] = ACTIONS(173), [sym__comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(216), - }, - [69] = { - [sym__Cf_args] = STATE(177), - [sym__arg_with_paren] = STATE(379), - [sym__arg] = STATE(379), - [sym_arg] = STATE(327), - [sym_arg_identifier] = STATE(379), - [sym_double_quoted_arg] = STATE(379), - [sym_single_quoted_arg] = STATE(379), - [sym_cmd_substitution_arg] = STATE(379), - [sym_concatenation] = STATE(394), - [anon_sym_DQUOTE] = ACTIONS(200), - [anon_sym_TILDE] = ACTIONS(198), - [anon_sym_PIPE] = ACTIONS(202), - [anon_sym_PIPEH] = ACTIONS(198), - [anon_sym_AT_AT_DOT] = ACTIONS(198), - [anon_sym_AT_AT_EQ] = ACTIONS(198), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(198), - [anon_sym_AT_AT] = ACTIONS(202), - [anon_sym_AT_ATc_COLON] = ACTIONS(198), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(198), - [anon_sym_AT_ATC] = ACTIONS(198), - [anon_sym_AT_ATdbt] = ACTIONS(202), - [anon_sym_AT_ATdbta] = ACTIONS(198), - [anon_sym_AT_ATdbtb] = ACTIONS(198), - [anon_sym_AT_ATdbts] = ACTIONS(198), - [anon_sym_AT_ATt] = ACTIONS(198), - [anon_sym_AT_ATb] = ACTIONS(198), - [anon_sym_AT_ATi] = ACTIONS(202), - [anon_sym_AT_ATii] = ACTIONS(198), - [anon_sym_AT_ATiS] = ACTIONS(202), - [anon_sym_AT_ATiSS] = ACTIONS(198), - [anon_sym_AT_ATis] = ACTIONS(198), - [anon_sym_AT_ATiz] = ACTIONS(198), - [anon_sym_AT_ATf] = ACTIONS(198), - [anon_sym_AT_ATF] = ACTIONS(198), - [anon_sym_AT_ATom] = ACTIONS(198), - [anon_sym_AT_ATdm] = ACTIONS(198), - [anon_sym_AT_ATr] = ACTIONS(198), - [anon_sym_AT_ATs_COLON] = ACTIONS(198), - [anon_sym_AT] = ACTIONS(202), - [anon_sym_AT_BANG] = ACTIONS(198), - [anon_sym_AT_LPAREN] = ACTIONS(198), - [anon_sym_ATa_COLON] = ACTIONS(198), - [anon_sym_ATb_COLON] = ACTIONS(198), - [anon_sym_ATB_COLON] = ACTIONS(198), - [anon_sym_ATe_COLON] = ACTIONS(198), - [anon_sym_ATF_COLON] = ACTIONS(198), - [anon_sym_ATi_COLON] = ACTIONS(198), - [anon_sym_ATk_COLON] = ACTIONS(198), - [anon_sym_ATo_COLON] = ACTIONS(198), - [anon_sym_ATr_COLON] = ACTIONS(198), - [anon_sym_ATf_COLON] = ACTIONS(198), - [anon_sym_ATs_COLON] = ACTIONS(198), - [anon_sym_ATv_COLON] = ACTIONS(198), - [anon_sym_ATx_COLON] = ACTIONS(198), - [anon_sym_PIPE_DOT] = ACTIONS(198), - [anon_sym_DOLLAR] = ACTIONS(204), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(198), - [anon_sym_GT] = ACTIONS(202), - [anon_sym_GT_GT] = ACTIONS(198), - [sym_html_redirect_operator] = ACTIONS(202), - [sym_html_append_operator] = ACTIONS(198), - [anon_sym_COMMA] = ACTIONS(208), - [aux_sym_arg_identifier_token1] = ACTIONS(204), - [anon_sym_SQUOTE] = ACTIONS(210), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(212), - [anon_sym_BQUOTE] = ACTIONS(198), - [sym__comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(198), + [sym_file_descriptor] = ACTIONS(173), }, [70] = { - [sym__pf_arg_parentheses] = STATE(96), - [sym_pf_arg_identifier] = STATE(96), - [sym__pf_arg] = STATE(96), - [sym_pf_concatenation] = STATE(106), + [sym_eq_sep_args] = STATE(189), + [sym__eq_sep_key_single] = STATE(113), + [sym__eq_sep_key_concatenation] = STATE(158), + [sym__eq_sep_key] = STATE(166), + [sym_double_quoted_arg] = STATE(113), + [sym_single_quoted_arg] = STATE(113), + [sym_cmd_substitution_arg] = STATE(113), + [ts_builtin_sym_end] = ACTIONS(234), + [anon_sym_DQUOTE] = ACTIONS(236), + [anon_sym_TILDE] = ACTIONS(234), + [anon_sym_PIPE] = ACTIONS(238), + [anon_sym_PIPEH] = ACTIONS(234), + [anon_sym_AT_AT_DOT] = ACTIONS(234), + [anon_sym_AT_AT_EQ] = ACTIONS(234), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(234), + [anon_sym_AT_AT] = ACTIONS(238), + [anon_sym_AT_ATc_COLON] = ACTIONS(234), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(234), + [anon_sym_AT_ATC] = ACTIONS(234), + [anon_sym_AT_ATdbt] = ACTIONS(238), + [anon_sym_AT_ATdbta] = ACTIONS(234), + [anon_sym_AT_ATdbtb] = ACTIONS(234), + [anon_sym_AT_ATdbts] = ACTIONS(234), + [anon_sym_AT_ATt] = ACTIONS(234), + [anon_sym_AT_ATb] = ACTIONS(234), + [anon_sym_AT_ATi] = ACTIONS(238), + [anon_sym_AT_ATii] = ACTIONS(234), + [anon_sym_AT_ATiS] = ACTIONS(238), + [anon_sym_AT_ATiSS] = ACTIONS(234), + [anon_sym_AT_ATis] = ACTIONS(234), + [anon_sym_AT_ATiz] = ACTIONS(234), + [anon_sym_AT_ATf] = ACTIONS(234), + [anon_sym_AT_ATF] = ACTIONS(234), + [anon_sym_AT_ATom] = ACTIONS(234), + [anon_sym_AT_ATdm] = ACTIONS(234), + [anon_sym_AT_ATr] = ACTIONS(234), + [anon_sym_AT_ATs_COLON] = ACTIONS(234), + [anon_sym_AT] = ACTIONS(238), + [anon_sym_AT_BANG] = ACTIONS(234), + [anon_sym_AT_LPAREN] = ACTIONS(234), + [anon_sym_RPAREN] = ACTIONS(234), + [anon_sym_ATa_COLON] = ACTIONS(234), + [anon_sym_ATb_COLON] = ACTIONS(234), + [anon_sym_ATB_COLON] = ACTIONS(234), + [anon_sym_ATe_COLON] = ACTIONS(234), + [anon_sym_ATF_COLON] = ACTIONS(234), + [anon_sym_ATi_COLON] = ACTIONS(234), + [anon_sym_ATk_COLON] = ACTIONS(234), + [anon_sym_ATo_COLON] = ACTIONS(234), + [anon_sym_ATr_COLON] = ACTIONS(234), + [anon_sym_ATf_COLON] = ACTIONS(234), + [anon_sym_ATs_COLON] = ACTIONS(234), + [anon_sym_ATv_COLON] = ACTIONS(234), + [anon_sym_ATx_COLON] = ACTIONS(234), + [anon_sym_PIPE_DOT] = ACTIONS(234), + [anon_sym_SEMI] = ACTIONS(234), + [anon_sym_GT] = ACTIONS(238), + [anon_sym_GT_GT] = ACTIONS(234), + [sym_html_redirect_operator] = ACTIONS(238), + [sym_html_append_operator] = ACTIONS(234), + [sym__eq_sep_key_identifier] = ACTIONS(240), + [anon_sym_SQUOTE] = ACTIONS(242), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(244), + [anon_sym_BQUOTE] = ACTIONS(246), + [sym__comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(234), + [anon_sym_CR] = ACTIONS(234), + [sym_file_descriptor] = ACTIONS(234), + }, + [71] = { + [sym__pf_arg_parentheses] = STATE(99), + [sym_pf_arg_identifier] = STATE(99), + [sym__pf_arg] = STATE(99), + [sym_pf_concatenation] = STATE(109), [sym_pf_arg] = STATE(89), - [sym_pf_args] = STATE(216), - [sym_cmd_substitution_arg] = STATE(96), + [sym_pf_args] = STATE(226), + [sym_cmd_substitution_arg] = STATE(99), [aux_sym_pf_args_repeat1] = STATE(89), [aux_sym_pf_dot_args_repeat1] = STATE(114), [anon_sym_TILDE] = ACTIONS(220), @@ -11437,218 +11583,148 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(220), [sym__concat_pf_dot] = ACTIONS(232), }, - [71] = { - [sym__pf_arg_parentheses] = STATE(96), - [sym_pf_arg_identifier] = STATE(96), - [sym__pf_arg] = STATE(96), - [sym_pf_concatenation] = STATE(106), - [sym_pf_arg] = STATE(71), - [sym_cmd_substitution_arg] = STATE(96), - [aux_sym_pf_args_repeat1] = STATE(71), - [ts_builtin_sym_end] = ACTIONS(234), - [anon_sym_TILDE] = ACTIONS(234), - [anon_sym_PIPE] = ACTIONS(236), - [anon_sym_PIPEH] = ACTIONS(234), - [anon_sym_AT_AT_DOT] = ACTIONS(234), - [anon_sym_AT_AT_EQ] = ACTIONS(234), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(234), - [anon_sym_AT_AT] = ACTIONS(236), - [anon_sym_AT_ATc_COLON] = ACTIONS(234), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(234), - [anon_sym_AT_ATC] = ACTIONS(234), - [anon_sym_AT_ATdbt] = ACTIONS(236), - [anon_sym_AT_ATdbta] = ACTIONS(234), - [anon_sym_AT_ATdbtb] = ACTIONS(234), - [anon_sym_AT_ATdbts] = ACTIONS(234), - [anon_sym_AT_ATt] = ACTIONS(234), - [anon_sym_AT_ATb] = ACTIONS(234), - [anon_sym_AT_ATi] = ACTIONS(236), - [anon_sym_AT_ATii] = ACTIONS(234), - [anon_sym_AT_ATiS] = ACTIONS(236), - [anon_sym_AT_ATiSS] = ACTIONS(234), - [anon_sym_AT_ATis] = ACTIONS(234), - [anon_sym_AT_ATiz] = ACTIONS(234), - [anon_sym_AT_ATf] = ACTIONS(234), - [anon_sym_AT_ATF] = ACTIONS(234), - [anon_sym_AT_ATom] = ACTIONS(234), - [anon_sym_AT_ATdm] = ACTIONS(234), - [anon_sym_AT_ATr] = ACTIONS(234), - [anon_sym_AT_ATs_COLON] = ACTIONS(234), - [anon_sym_AT] = ACTIONS(236), - [anon_sym_AT_BANG] = ACTIONS(234), - [anon_sym_AT_LPAREN] = ACTIONS(234), - [anon_sym_RPAREN] = ACTIONS(234), - [anon_sym_ATa_COLON] = ACTIONS(234), - [anon_sym_ATb_COLON] = ACTIONS(234), - [anon_sym_ATB_COLON] = ACTIONS(234), - [anon_sym_ATe_COLON] = ACTIONS(234), - [anon_sym_ATF_COLON] = ACTIONS(234), - [anon_sym_ATi_COLON] = ACTIONS(234), - [anon_sym_ATk_COLON] = ACTIONS(234), - [anon_sym_ATo_COLON] = ACTIONS(234), - [anon_sym_ATr_COLON] = ACTIONS(234), - [anon_sym_ATf_COLON] = ACTIONS(234), - [anon_sym_ATs_COLON] = ACTIONS(234), - [anon_sym_ATv_COLON] = ACTIONS(234), - [anon_sym_ATx_COLON] = ACTIONS(234), - [anon_sym_PIPE_DOT] = ACTIONS(234), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_LPAREN] = ACTIONS(241), - [aux_sym_pf_arg_identifier_token1] = ACTIONS(238), - [anon_sym_SEMI] = ACTIONS(234), - [anon_sym_GT] = ACTIONS(236), - [anon_sym_GT_GT] = ACTIONS(234), - [sym_html_redirect_operator] = ACTIONS(236), - [sym_html_append_operator] = ACTIONS(234), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(244), - [anon_sym_BQUOTE] = ACTIONS(247), - [sym__comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(234), - [anon_sym_CR] = ACTIONS(234), - [sym_file_descriptor] = ACTIONS(234), - }, [72] = { - [sym__pf_arg_parentheses] = STATE(96), - [sym_pf_arg_identifier] = STATE(96), - [sym__pf_arg] = STATE(96), - [sym_pf_concatenation] = STATE(106), - [sym_pf_arg] = STATE(71), - [sym_cmd_substitution_arg] = STATE(96), - [aux_sym_pf_args_repeat1] = STATE(71), - [ts_builtin_sym_end] = ACTIONS(250), - [anon_sym_TILDE] = ACTIONS(250), - [anon_sym_PIPE] = ACTIONS(252), - [anon_sym_PIPEH] = ACTIONS(250), - [anon_sym_AT_AT_DOT] = ACTIONS(250), - [anon_sym_AT_AT_EQ] = ACTIONS(250), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(250), - [anon_sym_AT_AT] = ACTIONS(252), - [anon_sym_AT_ATc_COLON] = ACTIONS(250), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(250), - [anon_sym_AT_ATC] = ACTIONS(250), - [anon_sym_AT_ATdbt] = ACTIONS(252), - [anon_sym_AT_ATdbta] = ACTIONS(250), - [anon_sym_AT_ATdbtb] = ACTIONS(250), - [anon_sym_AT_ATdbts] = ACTIONS(250), - [anon_sym_AT_ATt] = ACTIONS(250), - [anon_sym_AT_ATb] = ACTIONS(250), - [anon_sym_AT_ATi] = ACTIONS(252), - [anon_sym_AT_ATii] = ACTIONS(250), - [anon_sym_AT_ATiS] = ACTIONS(252), - [anon_sym_AT_ATiSS] = ACTIONS(250), - [anon_sym_AT_ATis] = ACTIONS(250), - [anon_sym_AT_ATiz] = ACTIONS(250), - [anon_sym_AT_ATf] = ACTIONS(250), - [anon_sym_AT_ATF] = ACTIONS(250), - [anon_sym_AT_ATom] = ACTIONS(250), - [anon_sym_AT_ATdm] = ACTIONS(250), - [anon_sym_AT_ATr] = ACTIONS(250), - [anon_sym_AT_ATs_COLON] = ACTIONS(250), - [anon_sym_AT] = ACTIONS(252), - [anon_sym_AT_BANG] = ACTIONS(250), - [anon_sym_AT_LPAREN] = ACTIONS(250), - [anon_sym_RPAREN] = ACTIONS(250), - [anon_sym_ATa_COLON] = ACTIONS(250), - [anon_sym_ATb_COLON] = ACTIONS(250), - [anon_sym_ATB_COLON] = ACTIONS(250), - [anon_sym_ATe_COLON] = ACTIONS(250), - [anon_sym_ATF_COLON] = ACTIONS(250), - [anon_sym_ATi_COLON] = ACTIONS(250), - [anon_sym_ATk_COLON] = ACTIONS(250), - [anon_sym_ATo_COLON] = ACTIONS(250), - [anon_sym_ATr_COLON] = ACTIONS(250), - [anon_sym_ATf_COLON] = ACTIONS(250), - [anon_sym_ATs_COLON] = ACTIONS(250), - [anon_sym_ATv_COLON] = ACTIONS(250), - [anon_sym_ATx_COLON] = ACTIONS(250), - [anon_sym_PIPE_DOT] = ACTIONS(250), + [sym__pf_arg_parentheses] = STATE(99), + [sym_pf_arg_identifier] = STATE(99), + [sym__pf_arg] = STATE(99), + [sym_pf_concatenation] = STATE(109), + [sym_pf_arg] = STATE(73), + [sym_cmd_substitution_arg] = STATE(99), + [aux_sym_pf_args_repeat1] = STATE(73), + [ts_builtin_sym_end] = ACTIONS(248), + [anon_sym_TILDE] = ACTIONS(248), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_PIPEH] = ACTIONS(248), + [anon_sym_AT_AT_DOT] = ACTIONS(248), + [anon_sym_AT_AT_EQ] = ACTIONS(248), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(248), + [anon_sym_AT_AT] = ACTIONS(250), + [anon_sym_AT_ATc_COLON] = ACTIONS(248), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(248), + [anon_sym_AT_ATC] = ACTIONS(248), + [anon_sym_AT_ATdbt] = ACTIONS(250), + [anon_sym_AT_ATdbta] = ACTIONS(248), + [anon_sym_AT_ATdbtb] = ACTIONS(248), + [anon_sym_AT_ATdbts] = ACTIONS(248), + [anon_sym_AT_ATt] = ACTIONS(248), + [anon_sym_AT_ATb] = ACTIONS(248), + [anon_sym_AT_ATi] = ACTIONS(250), + [anon_sym_AT_ATii] = ACTIONS(248), + [anon_sym_AT_ATiS] = ACTIONS(250), + [anon_sym_AT_ATiSS] = ACTIONS(248), + [anon_sym_AT_ATis] = ACTIONS(248), + [anon_sym_AT_ATiz] = ACTIONS(248), + [anon_sym_AT_ATf] = ACTIONS(248), + [anon_sym_AT_ATF] = ACTIONS(248), + [anon_sym_AT_ATom] = ACTIONS(248), + [anon_sym_AT_ATdm] = ACTIONS(248), + [anon_sym_AT_ATr] = ACTIONS(248), + [anon_sym_AT_ATs_COLON] = ACTIONS(248), + [anon_sym_AT] = ACTIONS(250), + [anon_sym_AT_BANG] = ACTIONS(248), + [anon_sym_AT_LPAREN] = ACTIONS(248), + [anon_sym_RPAREN] = ACTIONS(248), + [anon_sym_ATa_COLON] = ACTIONS(248), + [anon_sym_ATb_COLON] = ACTIONS(248), + [anon_sym_ATB_COLON] = ACTIONS(248), + [anon_sym_ATe_COLON] = ACTIONS(248), + [anon_sym_ATF_COLON] = ACTIONS(248), + [anon_sym_ATi_COLON] = ACTIONS(248), + [anon_sym_ATk_COLON] = ACTIONS(248), + [anon_sym_ATo_COLON] = ACTIONS(248), + [anon_sym_ATr_COLON] = ACTIONS(248), + [anon_sym_ATf_COLON] = ACTIONS(248), + [anon_sym_ATs_COLON] = ACTIONS(248), + [anon_sym_ATv_COLON] = ACTIONS(248), + [anon_sym_ATx_COLON] = ACTIONS(248), + [anon_sym_PIPE_DOT] = ACTIONS(248), [anon_sym_DOLLAR] = ACTIONS(224), [anon_sym_LPAREN] = ACTIONS(226), [aux_sym_pf_arg_identifier_token1] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(250), - [anon_sym_GT] = ACTIONS(252), - [anon_sym_GT_GT] = ACTIONS(250), - [sym_html_redirect_operator] = ACTIONS(252), - [sym_html_append_operator] = ACTIONS(250), + [anon_sym_SEMI] = ACTIONS(248), + [anon_sym_GT] = ACTIONS(250), + [anon_sym_GT_GT] = ACTIONS(248), + [sym_html_redirect_operator] = ACTIONS(250), + [sym_html_append_operator] = ACTIONS(248), [anon_sym_DOLLAR_LPAREN] = ACTIONS(228), [anon_sym_BQUOTE] = ACTIONS(230), [sym__comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(250), - [anon_sym_CR] = ACTIONS(250), - [sym_file_descriptor] = ACTIONS(250), + [anon_sym_LF] = ACTIONS(248), + [anon_sym_CR] = ACTIONS(248), + [sym_file_descriptor] = ACTIONS(248), }, [73] = { - [sym_eq_sep_args] = STATE(200), - [sym__eq_sep_key_single] = STATE(122), - [sym__eq_sep_key_concatenation] = STATE(172), - [sym__eq_sep_key] = STATE(167), - [sym_double_quoted_arg] = STATE(122), - [sym_single_quoted_arg] = STATE(122), - [sym_cmd_substitution_arg] = STATE(122), - [ts_builtin_sym_end] = ACTIONS(254), - [anon_sym_DQUOTE] = ACTIONS(256), - [anon_sym_TILDE] = ACTIONS(254), - [anon_sym_PIPE] = ACTIONS(258), - [anon_sym_PIPEH] = ACTIONS(254), - [anon_sym_AT_AT_DOT] = ACTIONS(254), - [anon_sym_AT_AT_EQ] = ACTIONS(254), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(254), - [anon_sym_AT_AT] = ACTIONS(258), - [anon_sym_AT_ATc_COLON] = ACTIONS(254), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(254), - [anon_sym_AT_ATC] = ACTIONS(254), - [anon_sym_AT_ATdbt] = ACTIONS(258), - [anon_sym_AT_ATdbta] = ACTIONS(254), - [anon_sym_AT_ATdbtb] = ACTIONS(254), - [anon_sym_AT_ATdbts] = ACTIONS(254), - [anon_sym_AT_ATt] = ACTIONS(254), - [anon_sym_AT_ATb] = ACTIONS(254), - [anon_sym_AT_ATi] = ACTIONS(258), - [anon_sym_AT_ATii] = ACTIONS(254), - [anon_sym_AT_ATiS] = ACTIONS(258), - [anon_sym_AT_ATiSS] = ACTIONS(254), - [anon_sym_AT_ATis] = ACTIONS(254), - [anon_sym_AT_ATiz] = ACTIONS(254), - [anon_sym_AT_ATf] = ACTIONS(254), - [anon_sym_AT_ATF] = ACTIONS(254), - [anon_sym_AT_ATom] = ACTIONS(254), - [anon_sym_AT_ATdm] = ACTIONS(254), - [anon_sym_AT_ATr] = ACTIONS(254), - [anon_sym_AT_ATs_COLON] = ACTIONS(254), - [anon_sym_AT] = ACTIONS(258), - [anon_sym_AT_BANG] = ACTIONS(254), - [anon_sym_AT_LPAREN] = ACTIONS(254), - [anon_sym_RPAREN] = ACTIONS(254), - [anon_sym_ATa_COLON] = ACTIONS(254), - [anon_sym_ATb_COLON] = ACTIONS(254), - [anon_sym_ATB_COLON] = ACTIONS(254), - [anon_sym_ATe_COLON] = ACTIONS(254), - [anon_sym_ATF_COLON] = ACTIONS(254), - [anon_sym_ATi_COLON] = ACTIONS(254), - [anon_sym_ATk_COLON] = ACTIONS(254), - [anon_sym_ATo_COLON] = ACTIONS(254), - [anon_sym_ATr_COLON] = ACTIONS(254), - [anon_sym_ATf_COLON] = ACTIONS(254), - [anon_sym_ATs_COLON] = ACTIONS(254), - [anon_sym_ATv_COLON] = ACTIONS(254), - [anon_sym_ATx_COLON] = ACTIONS(254), - [anon_sym_PIPE_DOT] = ACTIONS(254), - [anon_sym_SEMI] = ACTIONS(254), - [anon_sym_GT] = ACTIONS(258), - [anon_sym_GT_GT] = ACTIONS(254), - [sym_html_redirect_operator] = ACTIONS(258), - [sym_html_append_operator] = ACTIONS(254), - [sym__eq_sep_key_identifier] = ACTIONS(260), - [anon_sym_SQUOTE] = ACTIONS(262), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(264), - [anon_sym_BQUOTE] = ACTIONS(266), + [sym__pf_arg_parentheses] = STATE(99), + [sym_pf_arg_identifier] = STATE(99), + [sym__pf_arg] = STATE(99), + [sym_pf_concatenation] = STATE(109), + [sym_pf_arg] = STATE(73), + [sym_cmd_substitution_arg] = STATE(99), + [aux_sym_pf_args_repeat1] = STATE(73), + [ts_builtin_sym_end] = ACTIONS(252), + [anon_sym_TILDE] = ACTIONS(252), + [anon_sym_PIPE] = ACTIONS(254), + [anon_sym_PIPEH] = ACTIONS(252), + [anon_sym_AT_AT_DOT] = ACTIONS(252), + [anon_sym_AT_AT_EQ] = ACTIONS(252), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(252), + [anon_sym_AT_AT] = ACTIONS(254), + [anon_sym_AT_ATc_COLON] = ACTIONS(252), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(252), + [anon_sym_AT_ATC] = ACTIONS(252), + [anon_sym_AT_ATdbt] = ACTIONS(254), + [anon_sym_AT_ATdbta] = ACTIONS(252), + [anon_sym_AT_ATdbtb] = ACTIONS(252), + [anon_sym_AT_ATdbts] = ACTIONS(252), + [anon_sym_AT_ATt] = ACTIONS(252), + [anon_sym_AT_ATb] = ACTIONS(252), + [anon_sym_AT_ATi] = ACTIONS(254), + [anon_sym_AT_ATii] = ACTIONS(252), + [anon_sym_AT_ATiS] = ACTIONS(254), + [anon_sym_AT_ATiSS] = ACTIONS(252), + [anon_sym_AT_ATis] = ACTIONS(252), + [anon_sym_AT_ATiz] = ACTIONS(252), + [anon_sym_AT_ATf] = ACTIONS(252), + [anon_sym_AT_ATF] = ACTIONS(252), + [anon_sym_AT_ATom] = ACTIONS(252), + [anon_sym_AT_ATdm] = ACTIONS(252), + [anon_sym_AT_ATr] = ACTIONS(252), + [anon_sym_AT_ATs_COLON] = ACTIONS(252), + [anon_sym_AT] = ACTIONS(254), + [anon_sym_AT_BANG] = ACTIONS(252), + [anon_sym_AT_LPAREN] = ACTIONS(252), + [anon_sym_RPAREN] = ACTIONS(252), + [anon_sym_ATa_COLON] = ACTIONS(252), + [anon_sym_ATb_COLON] = ACTIONS(252), + [anon_sym_ATB_COLON] = ACTIONS(252), + [anon_sym_ATe_COLON] = ACTIONS(252), + [anon_sym_ATF_COLON] = ACTIONS(252), + [anon_sym_ATi_COLON] = ACTIONS(252), + [anon_sym_ATk_COLON] = ACTIONS(252), + [anon_sym_ATo_COLON] = ACTIONS(252), + [anon_sym_ATr_COLON] = ACTIONS(252), + [anon_sym_ATf_COLON] = ACTIONS(252), + [anon_sym_ATs_COLON] = ACTIONS(252), + [anon_sym_ATv_COLON] = ACTIONS(252), + [anon_sym_ATx_COLON] = ACTIONS(252), + [anon_sym_PIPE_DOT] = ACTIONS(252), + [anon_sym_DOLLAR] = ACTIONS(256), + [anon_sym_LPAREN] = ACTIONS(259), + [aux_sym_pf_arg_identifier_token1] = ACTIONS(256), + [anon_sym_SEMI] = ACTIONS(252), + [anon_sym_GT] = ACTIONS(254), + [anon_sym_GT_GT] = ACTIONS(252), + [sym_html_redirect_operator] = ACTIONS(254), + [sym_html_append_operator] = ACTIONS(252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(262), + [anon_sym_BQUOTE] = ACTIONS(265), [sym__comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(254), - [anon_sym_CR] = ACTIONS(254), - [sym_file_descriptor] = ACTIONS(254), + [anon_sym_LF] = ACTIONS(252), + [anon_sym_CR] = ACTIONS(252), + [sym_file_descriptor] = ACTIONS(252), }, [74] = { - [aux_sym_concatenation_repeat1] = STATE(74), + [aux_sym_concatenation_repeat1] = STATE(76), [ts_builtin_sym_end] = ACTIONS(268), [anon_sym_DQUOTE] = ACTIONS(268), [anon_sym_TILDE] = ACTIONS(268), @@ -11716,72 +11792,72 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__concat] = ACTIONS(272), }, [75] = { - [aux_sym_concatenation_repeat1] = STATE(74), - [ts_builtin_sym_end] = ACTIONS(275), - [anon_sym_DQUOTE] = ACTIONS(275), - [anon_sym_TILDE] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(277), - [anon_sym_PIPEH] = ACTIONS(275), - [anon_sym_AT_AT_DOT] = ACTIONS(275), - [anon_sym_AT_AT_EQ] = ACTIONS(275), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(275), - [anon_sym_AT_AT] = ACTIONS(277), - [anon_sym_AT_ATc_COLON] = ACTIONS(275), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(275), - [anon_sym_AT_ATC] = ACTIONS(275), - [anon_sym_AT_ATdbt] = ACTIONS(277), - [anon_sym_AT_ATdbta] = ACTIONS(275), - [anon_sym_AT_ATdbtb] = ACTIONS(275), - [anon_sym_AT_ATdbts] = ACTIONS(275), - [anon_sym_AT_ATt] = ACTIONS(275), - [anon_sym_AT_ATb] = ACTIONS(275), - [anon_sym_AT_ATi] = ACTIONS(277), - [anon_sym_AT_ATii] = ACTIONS(275), - [anon_sym_AT_ATiS] = ACTIONS(277), - [anon_sym_AT_ATiSS] = ACTIONS(275), - [anon_sym_AT_ATis] = ACTIONS(275), - [anon_sym_AT_ATiz] = ACTIONS(275), - [anon_sym_AT_ATf] = ACTIONS(275), - [anon_sym_AT_ATF] = ACTIONS(275), - [anon_sym_AT_ATom] = ACTIONS(275), - [anon_sym_AT_ATdm] = ACTIONS(275), - [anon_sym_AT_ATr] = ACTIONS(275), - [anon_sym_AT_ATs_COLON] = ACTIONS(275), - [anon_sym_AT] = ACTIONS(277), - [anon_sym_AT_BANG] = ACTIONS(275), - [anon_sym_AT_LPAREN] = ACTIONS(275), - [anon_sym_RPAREN] = ACTIONS(275), - [anon_sym_ATa_COLON] = ACTIONS(275), - [anon_sym_ATb_COLON] = ACTIONS(275), - [anon_sym_ATB_COLON] = ACTIONS(275), - [anon_sym_ATe_COLON] = ACTIONS(275), - [anon_sym_ATF_COLON] = ACTIONS(275), - [anon_sym_ATi_COLON] = ACTIONS(275), - [anon_sym_ATk_COLON] = ACTIONS(275), - [anon_sym_ATo_COLON] = ACTIONS(275), - [anon_sym_ATr_COLON] = ACTIONS(275), - [anon_sym_ATf_COLON] = ACTIONS(275), - [anon_sym_ATs_COLON] = ACTIONS(275), - [anon_sym_ATv_COLON] = ACTIONS(275), - [anon_sym_ATx_COLON] = ACTIONS(275), - [anon_sym_PIPE_DOT] = ACTIONS(275), - [anon_sym_DOLLAR] = ACTIONS(277), - [anon_sym_LPAREN] = ACTIONS(275), - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_GT] = ACTIONS(277), - [anon_sym_GT_GT] = ACTIONS(275), - [sym_html_redirect_operator] = ACTIONS(277), - [sym_html_append_operator] = ACTIONS(275), - [anon_sym_COMMA] = ACTIONS(275), - [aux_sym_arg_identifier_token1] = ACTIONS(277), - [anon_sym_SQUOTE] = ACTIONS(275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(275), - [anon_sym_BQUOTE] = ACTIONS(275), + [aux_sym_concatenation_repeat1] = STATE(75), + [ts_builtin_sym_end] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_PIPE] = ACTIONS(276), + [anon_sym_PIPEH] = ACTIONS(274), + [anon_sym_AT_AT_DOT] = ACTIONS(274), + [anon_sym_AT_AT_EQ] = ACTIONS(274), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(274), + [anon_sym_AT_AT] = ACTIONS(276), + [anon_sym_AT_ATc_COLON] = ACTIONS(274), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(274), + [anon_sym_AT_ATC] = ACTIONS(274), + [anon_sym_AT_ATdbt] = ACTIONS(276), + [anon_sym_AT_ATdbta] = ACTIONS(274), + [anon_sym_AT_ATdbtb] = ACTIONS(274), + [anon_sym_AT_ATdbts] = ACTIONS(274), + [anon_sym_AT_ATt] = ACTIONS(274), + [anon_sym_AT_ATb] = ACTIONS(274), + [anon_sym_AT_ATi] = ACTIONS(276), + [anon_sym_AT_ATii] = ACTIONS(274), + [anon_sym_AT_ATiS] = ACTIONS(276), + [anon_sym_AT_ATiSS] = ACTIONS(274), + [anon_sym_AT_ATis] = ACTIONS(274), + [anon_sym_AT_ATiz] = ACTIONS(274), + [anon_sym_AT_ATf] = ACTIONS(274), + [anon_sym_AT_ATF] = ACTIONS(274), + [anon_sym_AT_ATom] = ACTIONS(274), + [anon_sym_AT_ATdm] = ACTIONS(274), + [anon_sym_AT_ATr] = ACTIONS(274), + [anon_sym_AT_ATs_COLON] = ACTIONS(274), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_AT_BANG] = ACTIONS(274), + [anon_sym_AT_LPAREN] = ACTIONS(274), + [anon_sym_RPAREN] = ACTIONS(274), + [anon_sym_ATa_COLON] = ACTIONS(274), + [anon_sym_ATb_COLON] = ACTIONS(274), + [anon_sym_ATB_COLON] = ACTIONS(274), + [anon_sym_ATe_COLON] = ACTIONS(274), + [anon_sym_ATF_COLON] = ACTIONS(274), + [anon_sym_ATi_COLON] = ACTIONS(274), + [anon_sym_ATk_COLON] = ACTIONS(274), + [anon_sym_ATo_COLON] = ACTIONS(274), + [anon_sym_ATr_COLON] = ACTIONS(274), + [anon_sym_ATf_COLON] = ACTIONS(274), + [anon_sym_ATs_COLON] = ACTIONS(274), + [anon_sym_ATv_COLON] = ACTIONS(274), + [anon_sym_ATx_COLON] = ACTIONS(274), + [anon_sym_PIPE_DOT] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(274), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(274), + [sym_html_redirect_operator] = ACTIONS(276), + [sym_html_append_operator] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(274), + [aux_sym_arg_identifier_token1] = ACTIONS(276), + [anon_sym_SQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(274), + [anon_sym_BQUOTE] = ACTIONS(274), [sym__comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(275), - [anon_sym_CR] = ACTIONS(275), - [sym_file_descriptor] = ACTIONS(275), - [sym__concat] = ACTIONS(279), + [anon_sym_LF] = ACTIONS(274), + [anon_sym_CR] = ACTIONS(274), + [sym_file_descriptor] = ACTIONS(274), + [sym__concat] = ACTIONS(278), }, [76] = { [aux_sym_concatenation_repeat1] = STATE(75), @@ -11849,7 +11925,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(281), [anon_sym_CR] = ACTIONS(281), [sym_file_descriptor] = ACTIONS(281), - [sym__concat] = ACTIONS(279), + [sym__concat] = ACTIONS(272), }, [77] = { [ts_builtin_sym_end] = ACTIONS(285), @@ -11919,207 +11995,73 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__concat] = ACTIONS(285), }, [78] = { - [ts_builtin_sym_end] = ACTIONS(268), - [anon_sym_DQUOTE] = ACTIONS(268), - [anon_sym_TILDE] = ACTIONS(268), - [anon_sym_PIPE] = ACTIONS(270), - [anon_sym_PIPEH] = ACTIONS(268), - [anon_sym_AT_AT_DOT] = ACTIONS(268), - [anon_sym_AT_AT_EQ] = ACTIONS(268), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(268), - [anon_sym_AT_AT] = ACTIONS(270), - [anon_sym_AT_ATc_COLON] = ACTIONS(268), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(268), - [anon_sym_AT_ATC] = ACTIONS(268), - [anon_sym_AT_ATdbt] = ACTIONS(270), - [anon_sym_AT_ATdbta] = ACTIONS(268), - [anon_sym_AT_ATdbtb] = ACTIONS(268), - [anon_sym_AT_ATdbts] = ACTIONS(268), - [anon_sym_AT_ATt] = ACTIONS(268), - [anon_sym_AT_ATb] = ACTIONS(268), - [anon_sym_AT_ATi] = ACTIONS(270), - [anon_sym_AT_ATii] = ACTIONS(268), - [anon_sym_AT_ATiS] = ACTIONS(270), - [anon_sym_AT_ATiSS] = ACTIONS(268), - [anon_sym_AT_ATis] = ACTIONS(268), - [anon_sym_AT_ATiz] = ACTIONS(268), - [anon_sym_AT_ATf] = ACTIONS(268), - [anon_sym_AT_ATF] = ACTIONS(268), - [anon_sym_AT_ATom] = ACTIONS(268), - [anon_sym_AT_ATdm] = ACTIONS(268), - [anon_sym_AT_ATr] = ACTIONS(268), - [anon_sym_AT_ATs_COLON] = ACTIONS(268), - [anon_sym_AT] = ACTIONS(270), - [anon_sym_AT_BANG] = ACTIONS(268), - [anon_sym_AT_LPAREN] = ACTIONS(268), - [anon_sym_RPAREN] = ACTIONS(268), - [anon_sym_ATa_COLON] = ACTIONS(268), - [anon_sym_ATb_COLON] = ACTIONS(268), - [anon_sym_ATB_COLON] = ACTIONS(268), - [anon_sym_ATe_COLON] = ACTIONS(268), - [anon_sym_ATF_COLON] = ACTIONS(268), - [anon_sym_ATi_COLON] = ACTIONS(268), - [anon_sym_ATk_COLON] = ACTIONS(268), - [anon_sym_ATo_COLON] = ACTIONS(268), - [anon_sym_ATr_COLON] = ACTIONS(268), - [anon_sym_ATf_COLON] = ACTIONS(268), - [anon_sym_ATs_COLON] = ACTIONS(268), - [anon_sym_ATv_COLON] = ACTIONS(268), - [anon_sym_ATx_COLON] = ACTIONS(268), - [anon_sym_PIPE_DOT] = ACTIONS(268), - [anon_sym_DOLLAR] = ACTIONS(270), - [anon_sym_LPAREN] = ACTIONS(268), - [anon_sym_SEMI] = ACTIONS(268), - [anon_sym_GT] = ACTIONS(270), - [anon_sym_GT_GT] = ACTIONS(268), - [sym_html_redirect_operator] = ACTIONS(270), - [sym_html_append_operator] = ACTIONS(268), - [anon_sym_COMMA] = ACTIONS(268), - [aux_sym_arg_identifier_token1] = ACTIONS(270), - [anon_sym_SQUOTE] = ACTIONS(268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(268), - [anon_sym_BQUOTE] = ACTIONS(268), + [ts_builtin_sym_end] = ACTIONS(289), + [anon_sym_DQUOTE] = ACTIONS(289), + [anon_sym_TILDE] = ACTIONS(289), + [anon_sym_PIPE] = ACTIONS(291), + [anon_sym_PIPEH] = ACTIONS(289), + [anon_sym_AT_AT_DOT] = ACTIONS(289), + [anon_sym_AT_AT_EQ] = ACTIONS(289), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(289), + [anon_sym_AT_AT] = ACTIONS(291), + [anon_sym_AT_ATc_COLON] = ACTIONS(289), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(289), + [anon_sym_AT_ATC] = ACTIONS(289), + [anon_sym_AT_ATdbt] = ACTIONS(291), + [anon_sym_AT_ATdbta] = ACTIONS(289), + [anon_sym_AT_ATdbtb] = ACTIONS(289), + [anon_sym_AT_ATdbts] = ACTIONS(289), + [anon_sym_AT_ATt] = ACTIONS(289), + [anon_sym_AT_ATb] = ACTIONS(289), + [anon_sym_AT_ATi] = ACTIONS(291), + [anon_sym_AT_ATii] = ACTIONS(289), + [anon_sym_AT_ATiS] = ACTIONS(291), + [anon_sym_AT_ATiSS] = ACTIONS(289), + [anon_sym_AT_ATis] = ACTIONS(289), + [anon_sym_AT_ATiz] = ACTIONS(289), + [anon_sym_AT_ATf] = ACTIONS(289), + [anon_sym_AT_ATF] = ACTIONS(289), + [anon_sym_AT_ATom] = ACTIONS(289), + [anon_sym_AT_ATdm] = ACTIONS(289), + [anon_sym_AT_ATr] = ACTIONS(289), + [anon_sym_AT_ATs_COLON] = ACTIONS(289), + [anon_sym_AT] = ACTIONS(291), + [anon_sym_AT_BANG] = ACTIONS(289), + [anon_sym_AT_LPAREN] = ACTIONS(289), + [anon_sym_RPAREN] = ACTIONS(289), + [anon_sym_ATa_COLON] = ACTIONS(289), + [anon_sym_ATb_COLON] = ACTIONS(289), + [anon_sym_ATB_COLON] = ACTIONS(289), + [anon_sym_ATe_COLON] = ACTIONS(289), + [anon_sym_ATF_COLON] = ACTIONS(289), + [anon_sym_ATi_COLON] = ACTIONS(289), + [anon_sym_ATk_COLON] = ACTIONS(289), + [anon_sym_ATo_COLON] = ACTIONS(289), + [anon_sym_ATr_COLON] = ACTIONS(289), + [anon_sym_ATf_COLON] = ACTIONS(289), + [anon_sym_ATs_COLON] = ACTIONS(289), + [anon_sym_ATv_COLON] = ACTIONS(289), + [anon_sym_ATx_COLON] = ACTIONS(289), + [anon_sym_PIPE_DOT] = ACTIONS(289), + [anon_sym_DOLLAR] = ACTIONS(291), + [anon_sym_LPAREN] = ACTIONS(289), + [anon_sym_SEMI] = ACTIONS(289), + [anon_sym_GT] = ACTIONS(291), + [anon_sym_GT_GT] = ACTIONS(289), + [sym_html_redirect_operator] = ACTIONS(291), + [sym_html_append_operator] = ACTIONS(289), + [anon_sym_COMMA] = ACTIONS(289), + [aux_sym_arg_identifier_token1] = ACTIONS(291), + [anon_sym_SQUOTE] = ACTIONS(289), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(289), [sym__comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(268), - [anon_sym_CR] = ACTIONS(268), - [sym_file_descriptor] = ACTIONS(268), - [sym__concat] = ACTIONS(268), + [anon_sym_LF] = ACTIONS(289), + [anon_sym_CR] = ACTIONS(289), + [sym_file_descriptor] = ACTIONS(289), + [sym__concat] = ACTIONS(289), }, [79] = { - [ts_builtin_sym_end] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(289), - [anon_sym_PIPE] = ACTIONS(291), - [anon_sym_PIPEH] = ACTIONS(289), - [anon_sym_AT_AT_DOT] = ACTIONS(289), - [anon_sym_AT_AT_EQ] = ACTIONS(289), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(289), - [anon_sym_AT_AT] = ACTIONS(291), - [anon_sym_AT_ATc_COLON] = ACTIONS(289), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(289), - [anon_sym_AT_ATC] = ACTIONS(289), - [anon_sym_AT_ATdbt] = ACTIONS(291), - [anon_sym_AT_ATdbta] = ACTIONS(289), - [anon_sym_AT_ATdbtb] = ACTIONS(289), - [anon_sym_AT_ATdbts] = ACTIONS(289), - [anon_sym_AT_ATt] = ACTIONS(289), - [anon_sym_AT_ATb] = ACTIONS(289), - [anon_sym_AT_ATi] = ACTIONS(291), - [anon_sym_AT_ATii] = ACTIONS(289), - [anon_sym_AT_ATiS] = ACTIONS(291), - [anon_sym_AT_ATiSS] = ACTIONS(289), - [anon_sym_AT_ATis] = ACTIONS(289), - [anon_sym_AT_ATiz] = ACTIONS(289), - [anon_sym_AT_ATf] = ACTIONS(289), - [anon_sym_AT_ATF] = ACTIONS(289), - [anon_sym_AT_ATom] = ACTIONS(289), - [anon_sym_AT_ATdm] = ACTIONS(289), - [anon_sym_AT_ATr] = ACTIONS(289), - [anon_sym_AT_ATs_COLON] = ACTIONS(289), - [anon_sym_AT] = ACTIONS(291), - [anon_sym_AT_BANG] = ACTIONS(289), - [anon_sym_AT_LPAREN] = ACTIONS(289), - [anon_sym_RPAREN] = ACTIONS(289), - [anon_sym_ATa_COLON] = ACTIONS(289), - [anon_sym_ATb_COLON] = ACTIONS(289), - [anon_sym_ATB_COLON] = ACTIONS(289), - [anon_sym_ATe_COLON] = ACTIONS(289), - [anon_sym_ATF_COLON] = ACTIONS(289), - [anon_sym_ATi_COLON] = ACTIONS(289), - [anon_sym_ATk_COLON] = ACTIONS(289), - [anon_sym_ATo_COLON] = ACTIONS(289), - [anon_sym_ATr_COLON] = ACTIONS(289), - [anon_sym_ATf_COLON] = ACTIONS(289), - [anon_sym_ATs_COLON] = ACTIONS(289), - [anon_sym_ATv_COLON] = ACTIONS(289), - [anon_sym_ATx_COLON] = ACTIONS(289), - [anon_sym_PIPE_DOT] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(289), - [anon_sym_SEMI] = ACTIONS(289), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_GT] = ACTIONS(289), - [sym_html_redirect_operator] = ACTIONS(291), - [sym_html_append_operator] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(289), - [aux_sym_arg_identifier_token1] = ACTIONS(291), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(289), - [anon_sym_BQUOTE] = ACTIONS(289), - [sym__comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(289), - [anon_sym_CR] = ACTIONS(289), - [sym_file_descriptor] = ACTIONS(289), - [sym__concat] = ACTIONS(289), - }, - [80] = { - [ts_builtin_sym_end] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(289), - [anon_sym_TILDE] = ACTIONS(289), - [anon_sym_PIPE] = ACTIONS(291), - [anon_sym_PIPEH] = ACTIONS(289), - [anon_sym_AT_AT_DOT] = ACTIONS(289), - [anon_sym_AT_AT_EQ] = ACTIONS(289), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(289), - [anon_sym_AT_AT] = ACTIONS(291), - [anon_sym_AT_ATc_COLON] = ACTIONS(289), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(289), - [anon_sym_AT_ATC] = ACTIONS(289), - [anon_sym_AT_ATdbt] = ACTIONS(291), - [anon_sym_AT_ATdbta] = ACTIONS(289), - [anon_sym_AT_ATdbtb] = ACTIONS(289), - [anon_sym_AT_ATdbts] = ACTIONS(289), - [anon_sym_AT_ATt] = ACTIONS(289), - [anon_sym_AT_ATb] = ACTIONS(289), - [anon_sym_AT_ATi] = ACTIONS(291), - [anon_sym_AT_ATii] = ACTIONS(289), - [anon_sym_AT_ATiS] = ACTIONS(291), - [anon_sym_AT_ATiSS] = ACTIONS(289), - [anon_sym_AT_ATis] = ACTIONS(289), - [anon_sym_AT_ATiz] = ACTIONS(289), - [anon_sym_AT_ATf] = ACTIONS(289), - [anon_sym_AT_ATF] = ACTIONS(289), - [anon_sym_AT_ATom] = ACTIONS(289), - [anon_sym_AT_ATdm] = ACTIONS(289), - [anon_sym_AT_ATr] = ACTIONS(289), - [anon_sym_AT_ATs_COLON] = ACTIONS(289), - [anon_sym_AT] = ACTIONS(291), - [anon_sym_AT_BANG] = ACTIONS(289), - [anon_sym_AT_LPAREN] = ACTIONS(289), - [anon_sym_RPAREN] = ACTIONS(289), - [anon_sym_ATa_COLON] = ACTIONS(289), - [anon_sym_ATb_COLON] = ACTIONS(289), - [anon_sym_ATB_COLON] = ACTIONS(289), - [anon_sym_ATe_COLON] = ACTIONS(289), - [anon_sym_ATF_COLON] = ACTIONS(289), - [anon_sym_ATi_COLON] = ACTIONS(289), - [anon_sym_ATk_COLON] = ACTIONS(289), - [anon_sym_ATo_COLON] = ACTIONS(289), - [anon_sym_ATr_COLON] = ACTIONS(289), - [anon_sym_ATf_COLON] = ACTIONS(289), - [anon_sym_ATs_COLON] = ACTIONS(289), - [anon_sym_ATv_COLON] = ACTIONS(289), - [anon_sym_ATx_COLON] = ACTIONS(289), - [anon_sym_PIPE_DOT] = ACTIONS(289), - [anon_sym_DOLLAR] = ACTIONS(291), - [anon_sym_LPAREN] = ACTIONS(289), - [anon_sym_SEMI] = ACTIONS(289), - [anon_sym_GT] = ACTIONS(291), - [anon_sym_GT_GT] = ACTIONS(289), - [sym_html_redirect_operator] = ACTIONS(291), - [sym_html_append_operator] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(289), - [aux_sym_arg_identifier_token1] = ACTIONS(291), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(289), - [anon_sym_BQUOTE] = ACTIONS(289), - [sym__comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(289), - [anon_sym_CR] = ACTIONS(289), - [sym_file_descriptor] = ACTIONS(289), - [sym__concat] = ACTIONS(289), - }, - [81] = { [ts_builtin_sym_end] = ACTIONS(293), [anon_sym_DQUOTE] = ACTIONS(293), [anon_sym_TILDE] = ACTIONS(293), @@ -12186,7 +12128,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(293), [sym__concat] = ACTIONS(293), }, - [82] = { + [80] = { [ts_builtin_sym_end] = ACTIONS(297), [anon_sym_DQUOTE] = ACTIONS(297), [anon_sym_TILDE] = ACTIONS(297), @@ -12253,6 +12195,140 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(297), [sym__concat] = ACTIONS(297), }, + [81] = { + [ts_builtin_sym_end] = ACTIONS(301), + [anon_sym_DQUOTE] = ACTIONS(301), + [anon_sym_TILDE] = ACTIONS(301), + [anon_sym_PIPE] = ACTIONS(303), + [anon_sym_PIPEH] = ACTIONS(301), + [anon_sym_AT_AT_DOT] = ACTIONS(301), + [anon_sym_AT_AT_EQ] = ACTIONS(301), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(301), + [anon_sym_AT_AT] = ACTIONS(303), + [anon_sym_AT_ATc_COLON] = ACTIONS(301), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(301), + [anon_sym_AT_ATC] = ACTIONS(301), + [anon_sym_AT_ATdbt] = ACTIONS(303), + [anon_sym_AT_ATdbta] = ACTIONS(301), + [anon_sym_AT_ATdbtb] = ACTIONS(301), + [anon_sym_AT_ATdbts] = ACTIONS(301), + [anon_sym_AT_ATt] = ACTIONS(301), + [anon_sym_AT_ATb] = ACTIONS(301), + [anon_sym_AT_ATi] = ACTIONS(303), + [anon_sym_AT_ATii] = ACTIONS(301), + [anon_sym_AT_ATiS] = ACTIONS(303), + [anon_sym_AT_ATiSS] = ACTIONS(301), + [anon_sym_AT_ATis] = ACTIONS(301), + [anon_sym_AT_ATiz] = ACTIONS(301), + [anon_sym_AT_ATf] = ACTIONS(301), + [anon_sym_AT_ATF] = ACTIONS(301), + [anon_sym_AT_ATom] = ACTIONS(301), + [anon_sym_AT_ATdm] = ACTIONS(301), + [anon_sym_AT_ATr] = ACTIONS(301), + [anon_sym_AT_ATs_COLON] = ACTIONS(301), + [anon_sym_AT] = ACTIONS(303), + [anon_sym_AT_BANG] = ACTIONS(301), + [anon_sym_AT_LPAREN] = ACTIONS(301), + [anon_sym_RPAREN] = ACTIONS(301), + [anon_sym_ATa_COLON] = ACTIONS(301), + [anon_sym_ATb_COLON] = ACTIONS(301), + [anon_sym_ATB_COLON] = ACTIONS(301), + [anon_sym_ATe_COLON] = ACTIONS(301), + [anon_sym_ATF_COLON] = ACTIONS(301), + [anon_sym_ATi_COLON] = ACTIONS(301), + [anon_sym_ATk_COLON] = ACTIONS(301), + [anon_sym_ATo_COLON] = ACTIONS(301), + [anon_sym_ATr_COLON] = ACTIONS(301), + [anon_sym_ATf_COLON] = ACTIONS(301), + [anon_sym_ATs_COLON] = ACTIONS(301), + [anon_sym_ATv_COLON] = ACTIONS(301), + [anon_sym_ATx_COLON] = ACTIONS(301), + [anon_sym_PIPE_DOT] = ACTIONS(301), + [anon_sym_DOLLAR] = ACTIONS(303), + [anon_sym_LPAREN] = ACTIONS(301), + [anon_sym_SEMI] = ACTIONS(301), + [anon_sym_GT] = ACTIONS(303), + [anon_sym_GT_GT] = ACTIONS(301), + [sym_html_redirect_operator] = ACTIONS(303), + [sym_html_append_operator] = ACTIONS(301), + [anon_sym_COMMA] = ACTIONS(301), + [aux_sym_arg_identifier_token1] = ACTIONS(303), + [anon_sym_SQUOTE] = ACTIONS(301), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(301), + [anon_sym_BQUOTE] = ACTIONS(301), + [sym__comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(301), + [anon_sym_CR] = ACTIONS(301), + [sym_file_descriptor] = ACTIONS(301), + [sym__concat] = ACTIONS(301), + }, + [82] = { + [ts_builtin_sym_end] = ACTIONS(305), + [anon_sym_DQUOTE] = ACTIONS(305), + [anon_sym_TILDE] = ACTIONS(305), + [anon_sym_PIPE] = ACTIONS(307), + [anon_sym_PIPEH] = ACTIONS(305), + [anon_sym_AT_AT_DOT] = ACTIONS(305), + [anon_sym_AT_AT_EQ] = ACTIONS(305), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(305), + [anon_sym_AT_AT] = ACTIONS(307), + [anon_sym_AT_ATc_COLON] = ACTIONS(305), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(305), + [anon_sym_AT_ATC] = ACTIONS(305), + [anon_sym_AT_ATdbt] = ACTIONS(307), + [anon_sym_AT_ATdbta] = ACTIONS(305), + [anon_sym_AT_ATdbtb] = ACTIONS(305), + [anon_sym_AT_ATdbts] = ACTIONS(305), + [anon_sym_AT_ATt] = ACTIONS(305), + [anon_sym_AT_ATb] = ACTIONS(305), + [anon_sym_AT_ATi] = ACTIONS(307), + [anon_sym_AT_ATii] = ACTIONS(305), + [anon_sym_AT_ATiS] = ACTIONS(307), + [anon_sym_AT_ATiSS] = ACTIONS(305), + [anon_sym_AT_ATis] = ACTIONS(305), + [anon_sym_AT_ATiz] = ACTIONS(305), + [anon_sym_AT_ATf] = ACTIONS(305), + [anon_sym_AT_ATF] = ACTIONS(305), + [anon_sym_AT_ATom] = ACTIONS(305), + [anon_sym_AT_ATdm] = ACTIONS(305), + [anon_sym_AT_ATr] = ACTIONS(305), + [anon_sym_AT_ATs_COLON] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(307), + [anon_sym_AT_BANG] = ACTIONS(305), + [anon_sym_AT_LPAREN] = ACTIONS(305), + [anon_sym_RPAREN] = ACTIONS(305), + [anon_sym_ATa_COLON] = ACTIONS(305), + [anon_sym_ATb_COLON] = ACTIONS(305), + [anon_sym_ATB_COLON] = ACTIONS(305), + [anon_sym_ATe_COLON] = ACTIONS(305), + [anon_sym_ATF_COLON] = ACTIONS(305), + [anon_sym_ATi_COLON] = ACTIONS(305), + [anon_sym_ATk_COLON] = ACTIONS(305), + [anon_sym_ATo_COLON] = ACTIONS(305), + [anon_sym_ATr_COLON] = ACTIONS(305), + [anon_sym_ATf_COLON] = ACTIONS(305), + [anon_sym_ATs_COLON] = ACTIONS(305), + [anon_sym_ATv_COLON] = ACTIONS(305), + [anon_sym_ATx_COLON] = ACTIONS(305), + [anon_sym_PIPE_DOT] = ACTIONS(305), + [anon_sym_DOLLAR] = ACTIONS(307), + [anon_sym_LPAREN] = ACTIONS(305), + [anon_sym_SEMI] = ACTIONS(305), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(305), + [sym_html_redirect_operator] = ACTIONS(307), + [sym_html_append_operator] = ACTIONS(305), + [anon_sym_COMMA] = ACTIONS(305), + [aux_sym_arg_identifier_token1] = ACTIONS(307), + [anon_sym_SQUOTE] = ACTIONS(305), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(305), + [anon_sym_BQUOTE] = ACTIONS(305), + [sym__comment] = ACTIONS(3), + [anon_sym_LF] = ACTIONS(305), + [anon_sym_CR] = ACTIONS(305), + [sym_file_descriptor] = ACTIONS(305), + [sym__concat] = ACTIONS(305), + }, [83] = { [ts_builtin_sym_end] = ACTIONS(301), [anon_sym_DQUOTE] = ACTIONS(301), @@ -12321,71 +12397,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__concat] = ACTIONS(301), }, [84] = { - [ts_builtin_sym_end] = ACTIONS(305), - [anon_sym_DQUOTE] = ACTIONS(305), - [anon_sym_TILDE] = ACTIONS(305), - [anon_sym_PIPE] = ACTIONS(307), - [anon_sym_PIPEH] = ACTIONS(305), - [anon_sym_AT_AT_DOT] = ACTIONS(305), - [anon_sym_AT_AT_EQ] = ACTIONS(305), - [anon_sym_AT_AT_AT_EQ] = ACTIONS(305), - [anon_sym_AT_AT] = ACTIONS(307), - [anon_sym_AT_ATc_COLON] = ACTIONS(305), - [anon_sym_AT_AT_ATc_COLON] = ACTIONS(305), - [anon_sym_AT_ATC] = ACTIONS(305), - [anon_sym_AT_ATdbt] = ACTIONS(307), - [anon_sym_AT_ATdbta] = ACTIONS(305), - [anon_sym_AT_ATdbtb] = ACTIONS(305), - [anon_sym_AT_ATdbts] = ACTIONS(305), - [anon_sym_AT_ATt] = ACTIONS(305), - [anon_sym_AT_ATb] = ACTIONS(305), - [anon_sym_AT_ATi] = ACTIONS(307), - [anon_sym_AT_ATii] = ACTIONS(305), - [anon_sym_AT_ATiS] = ACTIONS(307), - [anon_sym_AT_ATiSS] = ACTIONS(305), - [anon_sym_AT_ATis] = ACTIONS(305), - [anon_sym_AT_ATiz] = ACTIONS(305), - [anon_sym_AT_ATf] = ACTIONS(305), - [anon_sym_AT_ATF] = ACTIONS(305), - [anon_sym_AT_ATom] = ACTIONS(305), - [anon_sym_AT_ATdm] = ACTIONS(305), - [anon_sym_AT_ATr] = ACTIONS(305), - [anon_sym_AT_ATs_COLON] = ACTIONS(305), - [anon_sym_AT] = ACTIONS(307), - [anon_sym_AT_BANG] = ACTIONS(305), - [anon_sym_AT_LPAREN] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(305), - [anon_sym_ATa_COLON] = ACTIONS(305), - [anon_sym_ATb_COLON] = ACTIONS(305), - [anon_sym_ATB_COLON] = ACTIONS(305), - [anon_sym_ATe_COLON] = ACTIONS(305), - [anon_sym_ATF_COLON] = ACTIONS(305), - [anon_sym_ATi_COLON] = ACTIONS(305), - [anon_sym_ATk_COLON] = ACTIONS(305), - [anon_sym_ATo_COLON] = ACTIONS(305), - [anon_sym_ATr_COLON] = ACTIONS(305), - [anon_sym_ATf_COLON] = ACTIONS(305), - [anon_sym_ATs_COLON] = ACTIONS(305), - [anon_sym_ATv_COLON] = ACTIONS(305), - [anon_sym_ATx_COLON] = ACTIONS(305), - [anon_sym_PIPE_DOT] = ACTIONS(305), - [anon_sym_DOLLAR] = ACTIONS(307), - [anon_sym_LPAREN] = ACTIONS(305), - [anon_sym_SEMI] = ACTIONS(305), - [anon_sym_GT] = ACTIONS(307), - [anon_sym_GT_GT] = ACTIONS(305), - [sym_html_redirect_operator] = ACTIONS(307), - [sym_html_append_operator] = ACTIONS(305), - [anon_sym_COMMA] = ACTIONS(305), - [aux_sym_arg_identifier_token1] = ACTIONS(307), - [anon_sym_SQUOTE] = ACTIONS(305), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(305), - [anon_sym_BQUOTE] = ACTIONS(305), + [ts_builtin_sym_end] = ACTIONS(274), + [anon_sym_DQUOTE] = ACTIONS(274), + [anon_sym_TILDE] = ACTIONS(274), + [anon_sym_PIPE] = ACTIONS(276), + [anon_sym_PIPEH] = ACTIONS(274), + [anon_sym_AT_AT_DOT] = ACTIONS(274), + [anon_sym_AT_AT_EQ] = ACTIONS(274), + [anon_sym_AT_AT_AT_EQ] = ACTIONS(274), + [anon_sym_AT_AT] = ACTIONS(276), + [anon_sym_AT_ATc_COLON] = ACTIONS(274), + [anon_sym_AT_AT_ATc_COLON] = ACTIONS(274), + [anon_sym_AT_ATC] = ACTIONS(274), + [anon_sym_AT_ATdbt] = ACTIONS(276), + [anon_sym_AT_ATdbta] = ACTIONS(274), + [anon_sym_AT_ATdbtb] = ACTIONS(274), + [anon_sym_AT_ATdbts] = ACTIONS(274), + [anon_sym_AT_ATt] = ACTIONS(274), + [anon_sym_AT_ATb] = ACTIONS(274), + [anon_sym_AT_ATi] = ACTIONS(276), + [anon_sym_AT_ATii] = ACTIONS(274), + [anon_sym_AT_ATiS] = ACTIONS(276), + [anon_sym_AT_ATiSS] = ACTIONS(274), + [anon_sym_AT_ATis] = ACTIONS(274), + [anon_sym_AT_ATiz] = ACTIONS(274), + [anon_sym_AT_ATf] = ACTIONS(274), + [anon_sym_AT_ATF] = ACTIONS(274), + [anon_sym_AT_ATom] = ACTIONS(274), + [anon_sym_AT_ATdm] = ACTIONS(274), + [anon_sym_AT_ATr] = ACTIONS(274), + [anon_sym_AT_ATs_COLON] = ACTIONS(274), + [anon_sym_AT] = ACTIONS(276), + [anon_sym_AT_BANG] = ACTIONS(274), + [anon_sym_AT_LPAREN] = ACTIONS(274), + [anon_sym_RPAREN] = ACTIONS(274), + [anon_sym_ATa_COLON] = ACTIONS(274), + [anon_sym_ATb_COLON] = ACTIONS(274), + [anon_sym_ATB_COLON] = ACTIONS(274), + [anon_sym_ATe_COLON] = ACTIONS(274), + [anon_sym_ATF_COLON] = ACTIONS(274), + [anon_sym_ATi_COLON] = ACTIONS(274), + [anon_sym_ATk_COLON] = ACTIONS(274), + [anon_sym_ATo_COLON] = ACTIONS(274), + [anon_sym_ATr_COLON] = ACTIONS(274), + [anon_sym_ATf_COLON] = ACTIONS(274), + [anon_sym_ATs_COLON] = ACTIONS(274), + [anon_sym_ATv_COLON] = ACTIONS(274), + [anon_sym_ATx_COLON] = ACTIONS(274), + [anon_sym_PIPE_DOT] = ACTIONS(274), + [anon_sym_DOLLAR] = ACTIONS(276), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_SEMI] = ACTIONS(274), + [anon_sym_GT] = ACTIONS(276), + [anon_sym_GT_GT] = ACTIONS(274), + [sym_html_redirect_operator] = ACTIONS(276), + [sym_html_append_operator] = ACTIONS(274), + [anon_sym_COMMA] = ACTIONS(274), + [aux_sym_arg_identifier_token1] = ACTIONS(276), + [anon_sym_SQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(274), + [anon_sym_BQUOTE] = ACTIONS(274), [sym__comment] = ACTIONS(3), - [anon_sym_LF] = ACTIONS(305), - [anon_sym_CR] = ACTIONS(305), - [sym_file_descriptor] = ACTIONS(305), - [sym__concat] = ACTIONS(305), + [anon_sym_LF] = ACTIONS(274), + [anon_sym_CR] = ACTIONS(274), + [sym_file_descriptor] = ACTIONS(274), + [sym__concat] = ACTIONS(274), }, [85] = { [ts_builtin_sym_end] = ACTIONS(309), @@ -12524,299 +12600,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static uint16_t ts_small_parse_table[] = { - [0] = 4, + [0] = 3, ACTIONS(3), 1, sym__comment, - STATE(92), 1, - aux_sym_pf_dot_concatenation_repeat1, - ACTIONS(319), 11, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_EQ, - anon_sym_DOLLAR, - aux_sym_pf_arg_identifier_token1, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(317), 51, - sym_file_descriptor, - sym__concat_pf_dot, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [73] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(325), 1, - sym__concat_pf_dot, - STATE(88), 1, - aux_sym_pf_dot_concatenation_repeat1, - ACTIONS(323), 11, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_EQ, - anon_sym_DOLLAR, - aux_sym_pf_arg_identifier_token1, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(321), 50, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [148] = 9, - ACTIONS(3), 1, - sym__comment, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(228), 1, - anon_sym_DOLLAR_LPAREN, - STATE(106), 1, - sym_pf_concatenation, - ACTIONS(224), 2, - anon_sym_DOLLAR, - aux_sym_pf_arg_identifier_token1, - STATE(71), 2, - sym_pf_arg, - aux_sym_pf_args_repeat1, - STATE(96), 4, - sym__pf_arg_parentheses, - sym_pf_arg_identifier, - sym__pf_arg, - sym_cmd_substitution_arg, - ACTIONS(252), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(250), 44, - sym_file_descriptor, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - [231] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(256), 1, - anon_sym_DQUOTE, - ACTIONS(260), 1, - sym__eq_sep_key_identifier, - ACTIONS(262), 1, - anon_sym_SQUOTE, - ACTIONS(264), 1, - anon_sym_DOLLAR_LPAREN, - STATE(167), 1, - sym__eq_sep_key, - STATE(172), 1, - sym__eq_sep_key_concatenation, - STATE(200), 1, - sym_eq_sep_args, - STATE(122), 4, - sym__eq_sep_key_single, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - ACTIONS(258), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(254), 44, - sym_file_descriptor, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - [318] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(283), 10, + ACTIONS(270), 10, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -12827,7 +12614,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, sym_html_redirect_operator, aux_sym_arg_identifier_token1, - ACTIONS(281), 53, + ACTIONS(268), 53, sym_file_descriptor, ts_builtin_sym_end, anon_sym_DQUOTE, @@ -12881,6 +12668,295 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, + [71] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(321), 1, + sym__concat_pf_dot, + STATE(88), 1, + aux_sym_pf_dot_concatenation_repeat1, + ACTIONS(319), 11, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_EQ, + anon_sym_DOLLAR, + aux_sym_pf_arg_identifier_token1, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(317), 50, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [146] = 9, + ACTIONS(3), 1, + sym__comment, + ACTIONS(226), 1, + anon_sym_LPAREN, + ACTIONS(228), 1, + anon_sym_DOLLAR_LPAREN, + STATE(109), 1, + sym_pf_concatenation, + ACTIONS(224), 2, + anon_sym_DOLLAR, + aux_sym_pf_arg_identifier_token1, + STATE(73), 2, + sym_pf_arg, + aux_sym_pf_args_repeat1, + STATE(99), 4, + sym__pf_arg_parentheses, + sym_pf_arg_identifier, + sym__pf_arg, + sym_cmd_substitution_arg, + ACTIONS(250), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(248), 44, + sym_file_descriptor, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + [229] = 4, + ACTIONS(3), 1, + sym__comment, + STATE(92), 1, + aux_sym_pf_dot_concatenation_repeat1, + ACTIONS(326), 11, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_EQ, + anon_sym_DOLLAR, + aux_sym_pf_arg_identifier_token1, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(324), 51, + sym_file_descriptor, + sym__concat_pf_dot, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [302] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(236), 1, + anon_sym_DQUOTE, + ACTIONS(240), 1, + sym__eq_sep_key_identifier, + ACTIONS(242), 1, + anon_sym_SQUOTE, + ACTIONS(244), 1, + anon_sym_DOLLAR_LPAREN, + STATE(158), 1, + sym__eq_sep_key_concatenation, + STATE(166), 1, + sym__eq_sep_key, + STATE(189), 1, + sym_eq_sep_args, + STATE(113), 4, + sym__eq_sep_key_single, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + ACTIONS(238), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(234), 44, + sym_file_descriptor, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, [389] = 5, ACTIONS(3), 1, sym__comment, @@ -12951,7 +13027,208 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [464] = 5, + [464] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(303), 11, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_EQ, + anon_sym_DOLLAR, + aux_sym_pf_arg_identifier_token1, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(301), 51, + sym_file_descriptor, + sym__concat_pf_dot, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [534] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(319), 11, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_EQ, + anon_sym_DOLLAR, + aux_sym_pf_arg_identifier_token1, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(317), 51, + sym_file_descriptor, + sym__concat_pf_dot, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [604] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(326), 11, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_EQ, + anon_sym_DOLLAR, + aux_sym_pf_arg_identifier_token1, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(324), 51, + sym_file_descriptor, + sym__concat_pf_dot, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [674] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(338), 1, @@ -13020,10 +13297,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [538] = 3, + [748] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(323), 11, + ACTIONS(303), 11, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -13035,7 +13312,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_pf_arg_identifier_token1, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(321), 51, + ACTIONS(301), 51, sym_file_descriptor, sym__concat_pf_dot, ts_builtin_sym_end, @@ -13087,79 +13364,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [608] = 3, + [818] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(319), 11, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_EQ, - anon_sym_DOLLAR, - aux_sym_pf_arg_identifier_token1, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(317), 51, - sym_file_descriptor, - sym__concat_pf_dot, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [678] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(338), 1, + ACTIONS(344), 1, sym__concat, - STATE(93), 1, + STATE(98), 1, aux_sym_pf_concatenation_repeat1, ACTIONS(342), 10, anon_sym_PIPE, @@ -13223,81 +13433,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [752] = 3, + [892] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(291), 11, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_EQ, - anon_sym_DOLLAR, - aux_sym_pf_arg_identifier_token1, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(289), 51, - sym_file_descriptor, - sym__concat_pf_dot, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [822] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(348), 1, + ACTIONS(338), 1, sym__concat, - STATE(98), 1, + STATE(96), 1, aux_sym_pf_concatenation_repeat1, - ACTIONS(346), 10, + ACTIONS(349), 10, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -13308,7 +13451,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_pf_arg_identifier_token1, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(344), 50, + ACTIONS(347), 50, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -13359,7 +13502,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [896] = 3, + [966] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(353), 11, @@ -13426,77 +13569,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [966] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(291), 11, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_EQ, - anon_sym_DOLLAR, - aux_sym_pf_arg_identifier_token1, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(289), 51, - sym_file_descriptor, - sym__concat_pf_dot, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, [1036] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(346), 10, + ACTIONS(303), 10, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -13507,7 +13583,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_pf_arg_identifier_token1, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(344), 51, + ACTIONS(301), 51, sym_file_descriptor, sym__concat, ts_builtin_sym_end, @@ -13560,72 +13636,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_CR, [1105] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(291), 10, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_DOLLAR, - aux_sym_pf_arg_identifier_token1, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(289), 51, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [1174] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(357), 10, @@ -13691,10 +13701,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [1243] = 3, + [1174] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(291), 10, + ACTIONS(303), 10, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -13705,7 +13715,73 @@ static uint16_t ts_small_parse_table[] = { aux_sym_pf_arg_identifier_token1, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(289), 51, + ACTIONS(301), 51, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [1243] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(342), 10, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_DOLLAR, + aux_sym_pf_arg_identifier_token1, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(340), 51, sym_file_descriptor, sym__concat, ts_builtin_sym_end, @@ -13826,20 +13902,20 @@ static uint16_t ts_small_parse_table[] = { [1381] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(342), 10, + ACTIONS(365), 9, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, anon_sym_AT_ATi, anon_sym_AT_ATiS, anon_sym_AT, - anon_sym_DOLLAR, - aux_sym_pf_arg_identifier_token1, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(340), 50, + sym__eq_sep_key_identifier, + ACTIONS(363), 51, sym_file_descriptor, ts_builtin_sym_end, + anon_sym_DQUOTE, anon_sym_TILDE, anon_sym_PIPEH, anon_sym_AT_AT_DOT, @@ -13880,30 +13956,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_ATv_COLON, anon_sym_ATx_COLON, anon_sym_PIPE_DOT, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_GT_GT, sym_html_append_operator, + anon_sym_SQUOTE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, [1449] = 7, - ACTIONS(367), 1, + ACTIONS(371), 1, sym_grep_specifier_identifier, - ACTIONS(370), 1, + ACTIONS(374), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(373), 1, + ACTIONS(377), 1, anon_sym_BQUOTE, - ACTIONS(376), 1, + ACTIONS(380), 1, sym__comment, - ACTIONS(363), 2, + ACTIONS(367), 2, sym_file_descriptor, ts_builtin_sym_end, STATE(107), 2, sym_cmd_substitution_arg, aux_sym_grep_specifier_repeat1, - ACTIONS(365), 53, + ACTIONS(369), 53, anon_sym_TILDE, aux_sym_grep_specifier_token1, anon_sym_PIPE, @@ -13958,23 +14034,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LF, anon_sym_CR, [1525] = 8, - ACTIONS(376), 1, + ACTIONS(380), 1, sym__comment, - ACTIONS(382), 1, - sym_grep_specifier_identifier, - ACTIONS(384), 1, - aux_sym_grep_specifier_token1, ACTIONS(386), 1, - anon_sym_DOLLAR_LPAREN, + sym_grep_specifier_identifier, ACTIONS(388), 1, + aux_sym_grep_specifier_token1, + ACTIONS(390), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(392), 1, anon_sym_BQUOTE, - ACTIONS(378), 2, + ACTIONS(382), 2, sym_file_descriptor, ts_builtin_sym_end, STATE(107), 2, sym_cmd_substitution_arg, aux_sym_grep_specifier_repeat1, - ACTIONS(380), 52, + ACTIONS(384), 52, anon_sym_TILDE, anon_sym_PIPE, anon_sym_PIPEH, @@ -14030,20 +14106,20 @@ static uint16_t ts_small_parse_table[] = { [1603] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(392), 9, + ACTIONS(349), 10, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, anon_sym_AT_ATi, anon_sym_AT_ATiS, anon_sym_AT, + anon_sym_DOLLAR, + aux_sym_pf_arg_identifier_token1, anon_sym_GT, sym_html_redirect_operator, - sym__eq_sep_key_identifier, - ACTIONS(390), 51, + ACTIONS(347), 50, sym_file_descriptor, ts_builtin_sym_end, - anon_sym_DQUOTE, anon_sym_TILDE, anon_sym_PIPEH, anon_sym_AT_AT_DOT, @@ -14084,10 +14160,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_ATv_COLON, anon_sym_ATx_COLON, anon_sym_PIPE_DOT, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_GT_GT, sym_html_append_operator, - anon_sym_SQUOTE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LF, @@ -14158,15 +14234,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [1742] = 6, + [1742] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(281), 1, - sym__eq_sep_concat, ACTIONS(405), 1, - sym__concat, - STATE(426), 1, - aux_sym_concatenation_repeat1, + sym__eq_sep_concat, + STATE(110), 1, + aux_sym__eq_sep_key_concatenation_repeat1, ACTIONS(403), 8, anon_sym_PIPE, anon_sym_AT_AT, @@ -14176,138 +14250,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(401), 48, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [1815] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(411), 1, - aux_sym_tmp_eval_arg_token1, - STATE(115), 1, - aux_sym_tmp_eval_arg_repeat1, - ACTIONS(409), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(407), 49, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_COMMA, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [1886] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(417), 1, - sym__eq_sep_concat, - STATE(110), 1, - aux_sym__eq_sep_key_concatenation_repeat1, - ACTIONS(415), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(413), 49, + ACTIONS(401), 49, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -14357,14 +14300,146 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [1957] = 5, + [1813] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(407), 1, + sym__concat, + STATE(112), 1, + aux_sym_concatenation_repeat1, + ACTIONS(276), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(274), 49, + sym_file_descriptor, + sym__eq_sep_concat, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [1884] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(405), 1, + sym__eq_sep_concat, + STATE(111), 1, + aux_sym__eq_sep_key_concatenation_repeat1, + ACTIONS(412), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(410), 49, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [1955] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(232), 1, sym__concat_pf_dot, - STATE(118), 1, + STATE(117), 1, aux_sym_pf_dot_args_repeat1, - ACTIONS(421), 8, + ACTIONS(416), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -14373,7 +14448,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(419), 49, + ACTIONS(414), 49, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -14423,14 +14498,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [2028] = 5, + [2026] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(427), 1, + ACTIONS(422), 1, aux_sym_tmp_eval_arg_token1, STATE(115), 1, aux_sym_tmp_eval_arg_repeat1, - ACTIONS(425), 8, + ACTIONS(420), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -14439,7 +14514,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(423), 49, + ACTIONS(418), 49, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -14489,7 +14564,139 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [2099] = 5, + [2097] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(425), 1, + sym__concat, + STATE(122), 1, + aux_sym_concatenation_repeat1, + ACTIONS(270), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(268), 49, + sym_file_descriptor, + sym__eq_sep_concat, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [2168] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(431), 1, + sym__concat_pf_dot, + STATE(117), 1, + aux_sym_pf_dot_args_repeat1, + ACTIONS(429), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(427), 49, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [2239] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(232), 1, @@ -14555,208 +14762,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [2170] = 5, + [2310] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(430), 1, - sym__concat, - STATE(121), 1, - aux_sym_concatenation_repeat1, - ACTIONS(277), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(275), 49, - sym_file_descriptor, - sym__eq_sep_concat, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [2241] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(436), 1, + ACTIONS(434), 1, sym__concat_pf_dot, - STATE(118), 1, - aux_sym_pf_dot_args_repeat1, - ACTIONS(434), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(432), 49, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [2312] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(430), 1, - sym__concat, - STATE(117), 1, - aux_sym_concatenation_repeat1, - ACTIONS(283), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(281), 49, - sym_file_descriptor, - sym__eq_sep_concat, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [2383] = 4, - ACTIONS(3), 1, - sym__comment, - STATE(123), 1, + STATE(119), 1, aux_sym_pf_dot_concatenation_repeat1, ACTIONS(319), 8, anon_sym_PIPE, @@ -14767,9 +14778,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(317), 50, + ACTIONS(317), 49, sym_file_descriptor, - sym__concat_pf_dot, ts_builtin_sym_end, anon_sym_TILDE, anon_sym_PIPEH, @@ -14818,14 +14828,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [2452] = 5, + [2381] = 6, ACTIONS(3), 1, sym__comment, - ACTIONS(439), 1, + ACTIONS(268), 1, + sym__eq_sep_concat, + ACTIONS(441), 1, sym__concat, - STATE(121), 1, + STATE(431), 1, aux_sym_concatenation_repeat1, - ACTIONS(270), 8, + ACTIONS(439), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -14834,9 +14846,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(268), 49, + ACTIONS(437), 48, sym_file_descriptor, - sym__eq_sep_concat, ts_builtin_sym_end, anon_sym_TILDE, anon_sym_PIPEH, @@ -14884,78 +14895,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [2523] = 5, + [2454] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(417), 1, - sym__eq_sep_concat, - STATE(113), 1, - aux_sym__eq_sep_key_concatenation_repeat1, - ACTIONS(444), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(442), 49, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [2594] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(446), 1, + ACTIONS(443), 1, sym__concat_pf_dot, - STATE(124), 1, + STATE(119), 1, aux_sym_pf_dot_concatenation_repeat1, ACTIONS(330), 8, anon_sym_PIPE, @@ -15016,14 +14961,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [2665] = 5, + [2525] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(448), 1, - sym__concat_pf_dot, - STATE(124), 1, - aux_sym_pf_dot_concatenation_repeat1, - ACTIONS(323), 8, + ACTIONS(425), 1, + sym__concat, + STATE(112), 1, + aux_sym_concatenation_repeat1, + ACTIONS(283), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -15032,8 +14977,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(321), 49, + ACTIONS(281), 49, sym_file_descriptor, + sym__eq_sep_concat, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [2596] = 4, + ACTIONS(3), 1, + sym__comment, + STATE(121), 1, + aux_sym_pf_dot_concatenation_repeat1, + ACTIONS(326), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(324), 50, + sym_file_descriptor, + sym__concat_pf_dot, ts_builtin_sym_end, anon_sym_TILDE, anon_sym_PIPEH, @@ -15082,711 +15092,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, + [2665] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(449), 1, + aux_sym_tmp_eval_arg_token1, + STATE(115), 1, + aux_sym_tmp_eval_arg_repeat1, + ACTIONS(447), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(445), 49, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_COMMA, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, [2736] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(311), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(309), 50, - sym_file_descriptor, - sym__eq_sep_concat, - sym__concat, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [2802] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(291), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(289), 50, - sym_file_descriptor, - sym__eq_sep_concat, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [2868] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(323), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(321), 50, - sym_file_descriptor, - sym__concat_pf_dot, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [2934] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(295), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(293), 50, - sym_file_descriptor, - sym__eq_sep_concat, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [3000] = 8, - ACTIONS(376), 1, - sym__comment, - ACTIONS(378), 1, - sym_file_descriptor, - ACTIONS(384), 1, - aux_sym_grep_specifier_token1, - ACTIONS(451), 1, - sym_grep_specifier_identifier, - ACTIONS(453), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(455), 1, - anon_sym_BQUOTE, - STATE(130), 2, - sym_cmd_substitution_arg, - aux_sym_grep_specifier_repeat1, - ACTIONS(380), 51, - anon_sym_TILDE, - anon_sym_PIPE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_AT, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbt, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATi, - anon_sym_AT_ATii, - anon_sym_AT_ATiS, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT, - anon_sym_GT_GT, - sym_html_redirect_operator, - sym_html_append_operator, - [3076] = 7, - ACTIONS(363), 1, - sym_file_descriptor, - ACTIONS(376), 1, - sym__comment, - ACTIONS(457), 1, - sym_grep_specifier_identifier, - ACTIONS(460), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(463), 1, - anon_sym_BQUOTE, - STATE(130), 2, - sym_cmd_substitution_arg, - aux_sym_grep_specifier_repeat1, - ACTIONS(365), 52, - anon_sym_TILDE, - aux_sym_grep_specifier_token1, - anon_sym_PIPE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_AT, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbt, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATi, - anon_sym_AT_ATii, - anon_sym_AT_ATiS, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT, - anon_sym_GT_GT, - sym_html_redirect_operator, - sym_html_append_operator, - [3150] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(315), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(313), 50, - sym_file_descriptor, - sym__eq_sep_concat, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [3216] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(396), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(394), 50, - sym_file_descriptor, - sym__eq_sep_concat, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [3282] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(319), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(317), 50, - sym_file_descriptor, - sym__concat_pf_dot, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [3348] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(291), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(289), 50, - sym_file_descriptor, - sym__eq_sep_concat, - sym__concat, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [3414] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(470), 1, - anon_sym_COMMA, - STATE(157), 1, - aux_sym_tmp_eval_args_repeat1, - ACTIONS(468), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(466), 48, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [3484] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(353), 8, @@ -15849,324 +15221,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [3550] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(476), 1, - anon_sym_LPAREN, - STATE(222), 1, - sym_macro_call_full_content, - ACTIONS(474), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(472), 48, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [3620] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(287), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(285), 50, - sym_file_descriptor, - sym__eq_sep_concat, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [3686] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(307), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(305), 50, - sym_file_descriptor, - sym__eq_sep_concat, - sym__concat, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [3752] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(311), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(309), 50, - sym_file_descriptor, - sym__eq_sep_concat, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [3818] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(299), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(297), 50, - sym_file_descriptor, - sym__eq_sep_concat, - sym__concat, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [3884] = 3, + [2802] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(291), 8, @@ -16229,7 +15284,772 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [3950] = 3, + [2868] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(315), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(313), 50, + sym_file_descriptor, + sym__eq_sep_concat, + sym__concat, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [2934] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(455), 1, + anon_sym_COMMA, + STATE(151), 1, + aux_sym_tmp_eval_args_repeat1, + ACTIONS(453), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(451), 48, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [3004] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(299), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(297), 50, + sym_file_descriptor, + sym__eq_sep_concat, + sym__concat, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [3070] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(303), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(301), 50, + sym_file_descriptor, + sym__eq_sep_concat, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [3136] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(303), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(301), 50, + sym_file_descriptor, + sym__eq_sep_concat, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [3202] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(276), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(274), 50, + sym_file_descriptor, + sym__eq_sep_concat, + sym__concat, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [3268] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(311), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(309), 50, + sym_file_descriptor, + sym__eq_sep_concat, + sym__concat, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [3334] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(461), 1, + anon_sym_LPAREN, + STATE(176), 1, + sym_macro_call_full_content, + ACTIONS(459), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(457), 48, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [3404] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(299), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(297), 50, + sym_file_descriptor, + sym__eq_sep_concat, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [3470] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(326), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(324), 50, + sym_file_descriptor, + sym__concat_pf_dot, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [3536] = 8, + ACTIONS(380), 1, + sym__comment, + ACTIONS(382), 1, + sym_file_descriptor, + ACTIONS(388), 1, + aux_sym_grep_specifier_token1, + ACTIONS(463), 1, + sym_grep_specifier_identifier, + ACTIONS(465), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(467), 1, + anon_sym_BQUOTE, + STATE(143), 2, + sym_cmd_substitution_arg, + aux_sym_grep_specifier_repeat1, + ACTIONS(384), 51, + anon_sym_TILDE, + anon_sym_PIPE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_AT, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbt, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATi, + anon_sym_AT_ATii, + anon_sym_AT_ATiS, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_GT_GT, + sym_html_redirect_operator, + sym_html_append_operator, + [3612] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(295), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(293), 50, + sym_file_descriptor, + sym__eq_sep_concat, + sym__concat, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [3678] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(303), 8, @@ -16292,13 +16112,269 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [4016] = 3, - ACTIONS(376), 1, + [3744] = 3, + ACTIONS(3), 1, sym__comment, - ACTIONS(289), 2, + ACTIONS(303), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(301), 50, + sym_file_descriptor, + sym__eq_sep_concat, + sym__concat, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [3810] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(396), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(394), 50, + sym_file_descriptor, + sym__eq_sep_concat, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [3876] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(291), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(289), 50, + sym_file_descriptor, + sym__eq_sep_concat, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [3942] = 7, + ACTIONS(367), 1, + sym_file_descriptor, + ACTIONS(380), 1, + sym__comment, + ACTIONS(469), 1, + sym_grep_specifier_identifier, + ACTIONS(472), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(475), 1, + anon_sym_BQUOTE, + STATE(143), 2, + sym_cmd_substitution_arg, + aux_sym_grep_specifier_repeat1, + ACTIONS(369), 52, + anon_sym_TILDE, + aux_sym_grep_specifier_token1, + anon_sym_PIPE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_AT, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbt, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATi, + anon_sym_AT_ATii, + anon_sym_AT_ATiS, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_GT_GT, + sym_html_redirect_operator, + sym_html_append_operator, + [4016] = 3, + ACTIONS(380), 1, + sym__comment, + ACTIONS(301), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(291), 56, + ACTIONS(303), 56, anon_sym_TILDE, sym_grep_specifier_identifier, aux_sym_grep_specifier_token1, @@ -16433,7 +16509,6 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(313), 50, sym_file_descriptor, sym__eq_sep_concat, - sym__concat, ts_builtin_sym_end, anon_sym_TILDE, anon_sym_PIPEH, @@ -16475,6 +16550,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_ATv_COLON, anon_sym_ATx_COLON, anon_sym_PIPE_DOT, + anon_sym_EQ, anon_sym_SEMI, anon_sym_GT_GT, sym_html_append_operator, @@ -16484,73 +16560,6 @@ static uint16_t ts_small_parse_table[] = { [4214] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(295), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(293), 50, - sym_file_descriptor, - sym__eq_sep_concat, - sym__concat, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [4280] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(470), 1, - anon_sym_COMMA, - STATE(135), 1, - aux_sym_tmp_eval_args_repeat1, ACTIONS(480), 8, anon_sym_PIPE, anon_sym_AT_AT, @@ -16560,131 +16569,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(478), 48, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [4350] = 3, - ACTIONS(376), 1, - sym__comment, - ACTIONS(289), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(291), 56, - anon_sym_TILDE, - sym_grep_specifier_identifier, - aux_sym_grep_specifier_token1, - anon_sym_PIPE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_AT, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbt, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATi, - anon_sym_AT_ATii, - anon_sym_AT_ATiS, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT, - anon_sym_GT_GT, - sym_html_redirect_operator, - sym_html_append_operator, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [4416] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(291), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(289), 50, + ACTIONS(478), 50, sym_file_descriptor, sym__concat_pf_dot, ts_builtin_sym_end, @@ -16735,9 +16620,202 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [4482] = 3, + [4280] = 3, ACTIONS(3), 1, sym__comment, + ACTIONS(303), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(301), 50, + sym_file_descriptor, + sym__concat_pf_dot, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [4346] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(303), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(301), 50, + sym_file_descriptor, + sym__concat_pf_dot, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [4412] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(311), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(309), 50, + sym_file_descriptor, + sym__eq_sep_concat, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [4478] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(455), 1, + anon_sym_COMMA, + STATE(154), 1, + aux_sym_tmp_eval_args_repeat1, ACTIONS(484), 8, anon_sym_PIPE, anon_sym_AT_AT, @@ -16747,136 +16825,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(482), 50, + ACTIONS(482), 48, sym_file_descriptor, - sym__concat_pf_dot, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [4548] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(291), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(289), 50, - sym_file_descriptor, - sym__eq_sep_concat, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [4614] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(270), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(268), 50, - sym_file_descriptor, - sym__eq_sep_concat, - sym__concat, ts_builtin_sym_end, anon_sym_TILDE, anon_sym_PIPEH, @@ -16924,12 +16874,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [4680] = 5, + [4548] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(490), 1, sym__eq_sep_concat, - STATE(155), 1, + STATE(152), 1, aux_sym__eq_sep_val_concatenation_repeat1, ACTIONS(488), 8, anon_sym_PIPE, @@ -16989,14 +16939,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [4750] = 5, + [4618] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(496), 1, - sym__eq_sep_concat, - STATE(155), 1, - aux_sym__eq_sep_val_concatenation_repeat1, - ACTIONS(494), 8, + ACTIONS(319), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -17005,68 +16951,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(492), 48, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [4820] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(291), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(289), 50, + ACTIONS(317), 50, sym_file_descriptor, sym__concat_pf_dot, ts_builtin_sym_end, @@ -17117,14 +17002,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [4886] = 5, + [4684] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(503), 1, + ACTIONS(497), 1, anon_sym_COMMA, - STATE(157), 1, + STATE(154), 1, aux_sym_tmp_eval_args_repeat1, - ACTIONS(501), 8, + ACTIONS(495), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -17133,7 +17018,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(499), 48, + ACTIONS(493), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -17182,10 +17067,201 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, + [4754] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(504), 1, + sym__eq_sep_concat, + STATE(152), 1, + aux_sym__eq_sep_val_concatenation_repeat1, + ACTIONS(502), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(500), 48, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [4824] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(307), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(305), 50, + sym_file_descriptor, + sym__eq_sep_concat, + sym__concat, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [4890] = 3, + ACTIONS(380), 1, + sym__comment, + ACTIONS(301), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(303), 56, + anon_sym_TILDE, + sym_grep_specifier_identifier, + aux_sym_grep_specifier_token1, + anon_sym_PIPE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_AT, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbt, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATi, + anon_sym_AT_ATii, + anon_sym_AT_ATiS, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_GT_GT, + sym_html_redirect_operator, + sym_html_append_operator, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, [4956] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(501), 8, + ACTIONS(412), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -17194,7 +17270,429 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(499), 49, + ACTIONS(410), 49, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [5021] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(270), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(268), 49, + sym_file_descriptor, + sym__eq_sep_concat, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [5086] = 53, + ACTIONS(3), 1, + sym__comment, + ACTIONS(508), 1, + anon_sym_TILDE, + ACTIONS(510), 1, + anon_sym_PIPE, + ACTIONS(512), 1, + anon_sym_PIPEH, + ACTIONS(514), 1, + anon_sym_AT_AT_DOT, + ACTIONS(516), 1, + anon_sym_AT_AT_EQ, + ACTIONS(518), 1, + anon_sym_AT_AT_AT_EQ, + ACTIONS(520), 1, + anon_sym_AT_AT, + ACTIONS(522), 1, + anon_sym_AT_ATc_COLON, + ACTIONS(524), 1, + anon_sym_AT_AT_ATc_COLON, + ACTIONS(526), 1, + anon_sym_AT_ATC, + ACTIONS(528), 1, + anon_sym_AT_ATdbt, + ACTIONS(530), 1, + anon_sym_AT_ATdbta, + ACTIONS(532), 1, + anon_sym_AT_ATdbtb, + ACTIONS(534), 1, + anon_sym_AT_ATdbts, + ACTIONS(536), 1, + anon_sym_AT_ATt, + ACTIONS(538), 1, + anon_sym_AT_ATb, + ACTIONS(540), 1, + anon_sym_AT_ATi, + ACTIONS(542), 1, + anon_sym_AT_ATii, + ACTIONS(544), 1, + anon_sym_AT_ATiS, + ACTIONS(546), 1, + anon_sym_AT_ATiSS, + ACTIONS(548), 1, + anon_sym_AT_ATis, + ACTIONS(550), 1, + anon_sym_AT_ATiz, + ACTIONS(552), 1, + anon_sym_AT_ATf, + ACTIONS(554), 1, + anon_sym_AT_ATF, + ACTIONS(556), 1, + anon_sym_AT_ATom, + ACTIONS(558), 1, + anon_sym_AT_ATdm, + ACTIONS(560), 1, + anon_sym_AT_ATr, + ACTIONS(562), 1, + anon_sym_AT_ATs_COLON, + ACTIONS(564), 1, + anon_sym_AT, + ACTIONS(566), 1, + anon_sym_AT_BANG, + ACTIONS(568), 1, + anon_sym_AT_LPAREN, + ACTIONS(570), 1, + anon_sym_ATa_COLON, + ACTIONS(572), 1, + anon_sym_ATb_COLON, + ACTIONS(574), 1, + anon_sym_ATB_COLON, + ACTIONS(576), 1, + anon_sym_ATe_COLON, + ACTIONS(578), 1, + anon_sym_ATF_COLON, + ACTIONS(580), 1, + anon_sym_ATi_COLON, + ACTIONS(582), 1, + anon_sym_ATk_COLON, + ACTIONS(584), 1, + anon_sym_ATo_COLON, + ACTIONS(586), 1, + anon_sym_ATr_COLON, + ACTIONS(588), 1, + anon_sym_ATf_COLON, + ACTIONS(590), 1, + anon_sym_ATs_COLON, + ACTIONS(592), 1, + anon_sym_ATv_COLON, + ACTIONS(594), 1, + anon_sym_ATx_COLON, + ACTIONS(596), 1, + anon_sym_PIPE_DOT, + ACTIONS(598), 1, + anon_sym_GT, + ACTIONS(600), 1, + anon_sym_GT_GT, + ACTIONS(602), 1, + sym_html_redirect_operator, + ACTIONS(604), 1, + sym_html_append_operator, + ACTIONS(606), 1, + sym_file_descriptor, + STATE(315), 3, + sym__redirect_operator, + sym_fdn_redirect_operator, + sym_fdn_append_operator, + ACTIONS(506), 4, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR, + [5251] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(610), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(608), 49, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [5316] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(614), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(612), 49, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [5381] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(488), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(486), 49, + sym_file_descriptor, + sym__eq_sep_concat, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [5446] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(495), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(493), 49, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -17244,10 +17742,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [5021] = 3, + [5511] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(508), 8, + ACTIONS(618), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -17256,7 +17754,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(506), 49, + ACTIONS(616), 49, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -17306,10 +17804,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [5086] = 3, + [5576] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(494), 8, + ACTIONS(624), 1, + anon_sym_EQ, + ACTIONS(622), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -17318,257 +17818,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(492), 49, - sym_file_descriptor, - sym__eq_sep_concat, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [5151] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(512), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(510), 49, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [5216] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(516), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(514), 49, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [5281] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(520), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(518), 49, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [5346] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(526), 1, - anon_sym_COLON, - ACTIONS(524), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(522), 48, + ACTIONS(620), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -17617,83 +17867,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [5413] = 3, - ACTIONS(3), 1, + [5643] = 7, + ACTIONS(380), 1, sym__comment, - ACTIONS(283), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(281), 49, + ACTIONS(382), 1, sym_file_descriptor, - sym__eq_sep_concat, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [5478] = 7, - ACTIONS(376), 1, - sym__comment, - ACTIONS(378), 1, - sym_file_descriptor, - ACTIONS(384), 1, + ACTIONS(388), 1, aux_sym_grep_specifier_token1, - ACTIONS(451), 1, + ACTIONS(463), 1, sym_grep_specifier_identifier, - ACTIONS(453), 1, + ACTIONS(465), 1, anon_sym_DOLLAR_LPAREN, - STATE(130), 2, + STATE(143), 2, sym_cmd_substitution_arg, aux_sym_grep_specifier_repeat1, - ACTIONS(380), 51, + ACTIONS(384), 51, anon_sym_TILDE, anon_sym_PIPE, anon_sym_PIPEH, @@ -17745,12 +17933,12 @@ static uint16_t ts_small_parse_table[] = { sym_html_redirect_operator, sym_html_append_operator, anon_sym_BQUOTE, - [5551] = 4, + [5716] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(532), 1, - anon_sym_EQ, - ACTIONS(530), 8, + ACTIONS(630), 1, + anon_sym_COLON, + ACTIONS(628), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -17759,7 +17947,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(528), 48, + ACTIONS(626), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -17808,122 +17996,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [5618] = 53, - ACTIONS(3), 1, - sym__comment, - ACTIONS(536), 1, - anon_sym_TILDE, - ACTIONS(538), 1, - anon_sym_PIPE, - ACTIONS(540), 1, - anon_sym_PIPEH, - ACTIONS(542), 1, - anon_sym_AT_AT_DOT, - ACTIONS(544), 1, - anon_sym_AT_AT_EQ, - ACTIONS(546), 1, - anon_sym_AT_AT_AT_EQ, - ACTIONS(548), 1, - anon_sym_AT_AT, - ACTIONS(550), 1, - anon_sym_AT_ATc_COLON, - ACTIONS(552), 1, - anon_sym_AT_AT_ATc_COLON, - ACTIONS(554), 1, - anon_sym_AT_ATC, - ACTIONS(556), 1, - anon_sym_AT_ATdbt, - ACTIONS(558), 1, - anon_sym_AT_ATdbta, - ACTIONS(560), 1, - anon_sym_AT_ATdbtb, - ACTIONS(562), 1, - anon_sym_AT_ATdbts, - ACTIONS(564), 1, - anon_sym_AT_ATt, - ACTIONS(566), 1, - anon_sym_AT_ATb, - ACTIONS(568), 1, - anon_sym_AT_ATi, - ACTIONS(570), 1, - anon_sym_AT_ATii, - ACTIONS(572), 1, - anon_sym_AT_ATiS, - ACTIONS(574), 1, - anon_sym_AT_ATiSS, - ACTIONS(576), 1, - anon_sym_AT_ATis, - ACTIONS(578), 1, - anon_sym_AT_ATiz, - ACTIONS(580), 1, - anon_sym_AT_ATf, - ACTIONS(582), 1, - anon_sym_AT_ATF, - ACTIONS(584), 1, - anon_sym_AT_ATom, - ACTIONS(586), 1, - anon_sym_AT_ATdm, - ACTIONS(588), 1, - anon_sym_AT_ATr, - ACTIONS(590), 1, - anon_sym_AT_ATs_COLON, - ACTIONS(592), 1, - anon_sym_AT, - ACTIONS(594), 1, - anon_sym_AT_BANG, - ACTIONS(596), 1, - anon_sym_AT_LPAREN, - ACTIONS(598), 1, - anon_sym_ATa_COLON, - ACTIONS(600), 1, - anon_sym_ATb_COLON, - ACTIONS(602), 1, - anon_sym_ATB_COLON, - ACTIONS(604), 1, - anon_sym_ATe_COLON, - ACTIONS(606), 1, - anon_sym_ATF_COLON, - ACTIONS(608), 1, - anon_sym_ATi_COLON, - ACTIONS(610), 1, - anon_sym_ATk_COLON, - ACTIONS(612), 1, - anon_sym_ATo_COLON, - ACTIONS(614), 1, - anon_sym_ATr_COLON, - ACTIONS(616), 1, - anon_sym_ATf_COLON, - ACTIONS(618), 1, - anon_sym_ATs_COLON, - ACTIONS(620), 1, - anon_sym_ATv_COLON, - ACTIONS(622), 1, - anon_sym_ATx_COLON, - ACTIONS(624), 1, - anon_sym_PIPE_DOT, - ACTIONS(626), 1, - anon_sym_GT, - ACTIONS(628), 1, - anon_sym_GT_GT, - ACTIONS(630), 1, - sym_html_redirect_operator, - ACTIONS(632), 1, - sym_html_append_operator, - ACTIONS(634), 1, - sym_file_descriptor, - STATE(300), 3, - sym__redirect_operator, - sym_fdn_redirect_operator, - sym_fdn_append_operator, - ACTIONS(534), 4, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR, [5783] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(638), 8, + ACTIONS(634), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -17932,7 +18008,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(636), 49, + ACTIONS(632), 49, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -17985,9 +18061,9 @@ static uint16_t ts_small_parse_table[] = { [5848] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(644), 1, + ACTIONS(640), 1, anon_sym_COLON, - ACTIONS(642), 8, + ACTIONS(638), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -17996,7 +18072,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(640), 48, + ACTIONS(636), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -18045,7 +18121,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [5915] = 4, + [5915] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(644), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(642), 49, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [5980] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(650), 1, @@ -18108,68 +18246,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [5982] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(444), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(442), 49, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, [6047] = 3, ACTIONS(3), 1, sym__comment, @@ -18231,11 +18307,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [6111] = 4, + [6111] = 3, + ACTIONS(301), 1, + sym_file_descriptor, + ACTIONS(380), 1, + sym__comment, + ACTIONS(303), 55, + anon_sym_TILDE, + sym_grep_specifier_identifier, + aux_sym_grep_specifier_token1, + anon_sym_PIPE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_AT, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbt, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATi, + anon_sym_AT_ATii, + anon_sym_AT_ATiS, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_GT_GT, + sym_html_redirect_operator, + sym_html_append_operator, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [6175] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(660), 1, - anon_sym_EQ, + sym__concat_pf_dot, ACTIONS(658), 8, anon_sym_PIPE, anon_sym_AT_AT, @@ -18293,7 +18430,7 @@ static uint16_t ts_small_parse_table[] = { sym_html_append_operator, anon_sym_LF, anon_sym_CR, - [6177] = 3, + [6241] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(664), 8, @@ -18354,10 +18491,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [6241] = 3, + [6305] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(59), 8, + ACTIONS(384), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -18366,7 +18503,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(57), 48, + ACTIONS(382), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -18415,7 +18552,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [6305] = 3, + [6369] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(668), 8, @@ -18476,313 +18613,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [6369] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(672), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(670), 48, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [6433] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(678), 1, - sym__concat_pf_dot, - ACTIONS(676), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(674), 47, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_LF, - anon_sym_CR, - [6499] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(682), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(680), 48, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [6563] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(686), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(684), 48, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [6627] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(690), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(688), 48, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [6691] = 3, + [6433] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(63), 8, @@ -18843,10 +18674,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [6755] = 3, + [6497] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(694), 8, + ACTIONS(672), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -18855,7 +18686,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(692), 48, + ACTIONS(670), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -18904,10 +18735,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [6819] = 3, + [6561] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(698), 8, + ACTIONS(676), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -18916,7 +18747,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(696), 48, + ACTIONS(674), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -18965,10 +18796,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [6883] = 3, + [6625] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(702), 8, + ACTIONS(680), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -18977,7 +18808,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(700), 48, + ACTIONS(678), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -19026,10 +18857,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [6947] = 3, + [6689] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(706), 8, + ACTIONS(684), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -19038,7 +18869,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(704), 48, + ACTIONS(682), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -19087,10 +18918,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [7011] = 3, + [6753] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(710), 8, + ACTIONS(688), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -19099,7 +18930,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(708), 48, + ACTIONS(686), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -19148,10 +18979,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [7075] = 3, + [6817] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(714), 8, + ACTIONS(688), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -19160,7 +18991,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(712), 48, + ACTIONS(686), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -19209,10 +19040,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [7139] = 3, + [6881] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(718), 8, + ACTIONS(688), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -19221,7 +19052,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(716), 48, + ACTIONS(686), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -19270,10 +19101,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [7203] = 3, + [6945] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(722), 8, + ACTIONS(59), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -19282,7 +19113,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(720), 48, + ACTIONS(57), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -19331,10 +19162,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [7267] = 3, + [7009] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(726), 8, + ACTIONS(692), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -19343,7 +19174,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(724), 48, + ACTIONS(690), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -19392,10 +19223,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [7331] = 3, + [7073] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(730), 8, + ACTIONS(696), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -19404,7 +19235,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(728), 48, + ACTIONS(694), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -19453,10 +19284,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [7395] = 3, + [7137] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(734), 8, + ACTIONS(700), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -19465,7 +19296,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(732), 48, + ACTIONS(698), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -19514,10 +19345,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [7459] = 3, + [7201] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(738), 8, + ACTIONS(704), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -19526,7 +19357,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(736), 48, + ACTIONS(702), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -19575,10 +19406,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [7523] = 3, + [7265] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(742), 8, + ACTIONS(708), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -19587,7 +19418,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(740), 48, + ACTIONS(706), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -19636,10 +19467,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [7587] = 3, + [7329] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(746), 8, + ACTIONS(688), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -19648,7 +19479,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(744), 48, + ACTIONS(686), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -19697,10 +19528,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [7651] = 3, + [7393] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(750), 8, + ACTIONS(712), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -19709,7 +19540,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(748), 48, + ACTIONS(710), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -19758,10 +19589,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [7715] = 3, + [7457] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(754), 8, + ACTIONS(716), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -19770,7 +19601,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(752), 48, + ACTIONS(714), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -19819,10 +19650,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [7779] = 3, + [7521] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(758), 8, + ACTIONS(720), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -19831,7 +19662,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(756), 48, + ACTIONS(718), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -19880,10 +19711,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [7843] = 3, + [7585] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(762), 8, + ACTIONS(688), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -19892,7 +19723,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(760), 48, + ACTIONS(686), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -19941,10 +19772,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [7907] = 3, + [7649] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(766), 8, + ACTIONS(724), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -19953,7 +19784,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(764), 48, + ACTIONS(722), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -20002,10 +19833,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [7971] = 3, + [7713] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(770), 8, + ACTIONS(688), 8, anon_sym_PIPE, anon_sym_AT_AT, anon_sym_AT_ATdbt, @@ -20014,7 +19845,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(768), 48, + ACTIONS(686), 48, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -20063,7 +19894,862 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [8035] = 3, + [7777] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(728), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(726), 48, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [7841] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(732), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(730), 48, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [7905] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(736), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(734), 48, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [7969] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(740), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(738), 48, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [8033] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(744), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(742), 48, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [8097] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(748), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(746), 48, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [8161] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(752), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(750), 48, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [8225] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(756), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(754), 48, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [8289] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(760), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(758), 48, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [8353] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(764), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(762), 48, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [8417] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(688), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(686), 48, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [8481] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(770), 1, + anon_sym_EQ, + ACTIONS(768), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(766), 47, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_LF, + anon_sym_CR, + [8547] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(688), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(686), 48, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [8611] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(688), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(686), 48, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [8675] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(774), 8, @@ -20124,7 +20810,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [8099] = 3, + [8739] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(778), 8, @@ -20185,7 +20871,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [8163] = 3, + [8803] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(782), 8, @@ -20246,7 +20932,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [8227] = 3, + [8867] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(786), 8, @@ -20307,7 +20993,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [8291] = 3, + [8931] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(790), 8, @@ -20368,7 +21054,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [8355] = 3, + [8995] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(790), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(788), 48, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [9059] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(794), 8, @@ -20429,7 +21176,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [8419] = 3, + [9123] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(798), 8, @@ -20490,7 +21237,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [8483] = 3, + [9187] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(802), 8, @@ -20551,7 +21298,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [8547] = 3, + [9251] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(806), 8, @@ -20612,7 +21359,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [8611] = 3, + [9315] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(810), 8, @@ -20673,7 +21420,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [8675] = 3, + [9379] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(814), 8, @@ -20734,7 +21481,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [8739] = 3, + [9443] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(818), 8, @@ -20795,7 +21542,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [8803] = 3, + [9507] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(822), 8, @@ -20856,7 +21603,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [8867] = 3, + [9571] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(826), 8, @@ -20917,7 +21664,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [8931] = 3, + [9635] = 3, + ACTIONS(301), 1, + sym_file_descriptor, + ACTIONS(380), 1, + sym__comment, + ACTIONS(303), 55, + anon_sym_TILDE, + sym_grep_specifier_identifier, + aux_sym_grep_specifier_token1, + anon_sym_PIPE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_AT, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbt, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATi, + anon_sym_AT_ATii, + anon_sym_AT_ATiS, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_GT_GT, + sym_html_redirect_operator, + sym_html_append_operator, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [9699] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(830), 8, @@ -20978,7 +21786,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [8995] = 3, + [9763] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(834), 8, @@ -21039,7 +21847,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [9059] = 3, + [9827] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(838), 8, @@ -21100,7 +21908,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [9123] = 3, + [9891] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(842), 8, @@ -21161,7 +21969,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [9187] = 3, + [9955] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(846), 8, @@ -21222,7 +22030,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [9251] = 3, + [10019] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(439), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(437), 48, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [10083] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(850), 8, @@ -21283,7 +22152,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [9315] = 3, + [10147] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(854), 8, @@ -21344,129 +22213,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [9379] = 3, - ACTIONS(289), 1, - sym_file_descriptor, - ACTIONS(376), 1, - sym__comment, - ACTIONS(291), 55, - anon_sym_TILDE, - sym_grep_specifier_identifier, - aux_sym_grep_specifier_token1, - anon_sym_PIPE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_AT, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbt, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATi, - anon_sym_AT_ATii, - anon_sym_AT_ATiS, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT, - anon_sym_GT_GT, - sym_html_redirect_operator, - sym_html_append_operator, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [9443] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(403), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(401), 48, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [9507] = 3, + [10211] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(858), 8, @@ -21527,7 +22274,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [9571] = 3, + [10275] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(862), 8, @@ -21588,68 +22335,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [9635] = 3, - ACTIONS(289), 1, - sym_file_descriptor, - ACTIONS(376), 1, - sym__comment, - ACTIONS(291), 55, - anon_sym_TILDE, - sym_grep_specifier_identifier, - aux_sym_grep_specifier_token1, - anon_sym_PIPE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_AT, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbt, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATi, - anon_sym_AT_ATii, - anon_sym_AT_ATiS, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT, - anon_sym_GT_GT, - sym_html_redirect_operator, - sym_html_append_operator, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [9699] = 3, + [10339] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(866), 8, @@ -21710,7 +22396,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [9763] = 3, + [10403] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(870), 8, @@ -21771,7 +22457,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [9827] = 3, + [10467] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(874), 8, @@ -21832,7 +22518,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [9891] = 3, + [10531] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(878), 8, @@ -21893,7 +22579,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [9955] = 3, + [10595] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(882), 8, @@ -21954,7 +22640,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [10019] = 3, + [10659] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(886), 8, @@ -22015,7 +22701,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [10083] = 3, + [10723] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(890), 8, @@ -22076,7 +22762,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [10147] = 3, + [10787] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(894), 8, @@ -22137,7 +22823,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [10211] = 3, + [10851] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(898), 8, @@ -22198,7 +22884,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [10275] = 3, + [10915] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(902), 8, @@ -22259,7 +22945,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [10339] = 3, + [10979] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(906), 8, @@ -22320,7 +23006,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [10403] = 3, + [11043] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(910), 8, @@ -22381,7 +23067,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [10467] = 3, + [11107] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(914), 8, @@ -22442,7 +23128,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [10531] = 3, + [11171] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(918), 8, @@ -22503,68 +23189,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [10595] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(380), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(378), 48, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [10659] = 3, + [11235] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(922), 8, @@ -22625,7 +23250,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [10723] = 3, + [11299] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(926), 8, @@ -22686,7 +23311,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [10787] = 3, + [11363] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(930), 8, @@ -22747,7 +23372,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [10851] = 3, + [11427] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(934), 8, @@ -22808,7 +23433,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [10915] = 3, + [11491] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(938), 8, @@ -22869,7 +23494,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [10979] = 3, + [11555] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(942), 8, @@ -22930,7 +23555,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [11043] = 3, + [11619] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(946), 8, @@ -22991,7 +23616,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [11107] = 3, + [11683] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(950), 8, @@ -23052,100 +23677,161 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [11171] = 46, + [11747] = 4, + ACTIONS(380), 1, + sym__comment, + ACTIONS(956), 1, + sym_pipe_second_command, + ACTIONS(952), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(954), 52, + anon_sym_TILDE, + anon_sym_PIPE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_AT, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbt, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATi, + anon_sym_AT_ATii, + anon_sym_AT_ATiS, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_GT_GT, + sym_html_redirect_operator, + sym_html_append_operator, + anon_sym_LF, + anon_sym_CR, + [11812] = 46, ACTIONS(3), 1, sym__comment, - ACTIONS(540), 1, + ACTIONS(512), 1, anon_sym_PIPEH, - ACTIONS(542), 1, + ACTIONS(514), 1, anon_sym_AT_AT_DOT, - ACTIONS(544), 1, + ACTIONS(516), 1, anon_sym_AT_AT_EQ, - ACTIONS(546), 1, + ACTIONS(518), 1, anon_sym_AT_AT_AT_EQ, - ACTIONS(548), 1, + ACTIONS(520), 1, anon_sym_AT_AT, - ACTIONS(550), 1, + ACTIONS(522), 1, anon_sym_AT_ATc_COLON, - ACTIONS(552), 1, + ACTIONS(524), 1, anon_sym_AT_AT_ATc_COLON, - ACTIONS(554), 1, + ACTIONS(526), 1, anon_sym_AT_ATC, - ACTIONS(556), 1, + ACTIONS(528), 1, anon_sym_AT_ATdbt, - ACTIONS(558), 1, + ACTIONS(530), 1, anon_sym_AT_ATdbta, - ACTIONS(560), 1, + ACTIONS(532), 1, anon_sym_AT_ATdbtb, - ACTIONS(562), 1, + ACTIONS(534), 1, anon_sym_AT_ATdbts, - ACTIONS(564), 1, + ACTIONS(536), 1, anon_sym_AT_ATt, - ACTIONS(566), 1, + ACTIONS(538), 1, anon_sym_AT_ATb, - ACTIONS(568), 1, + ACTIONS(540), 1, anon_sym_AT_ATi, - ACTIONS(570), 1, + ACTIONS(542), 1, anon_sym_AT_ATii, - ACTIONS(572), 1, + ACTIONS(544), 1, anon_sym_AT_ATiS, - ACTIONS(574), 1, + ACTIONS(546), 1, anon_sym_AT_ATiSS, - ACTIONS(576), 1, + ACTIONS(548), 1, anon_sym_AT_ATis, - ACTIONS(578), 1, + ACTIONS(550), 1, anon_sym_AT_ATiz, - ACTIONS(580), 1, + ACTIONS(552), 1, anon_sym_AT_ATf, - ACTIONS(582), 1, + ACTIONS(554), 1, anon_sym_AT_ATF, - ACTIONS(584), 1, + ACTIONS(556), 1, anon_sym_AT_ATom, - ACTIONS(586), 1, + ACTIONS(558), 1, anon_sym_AT_ATdm, - ACTIONS(588), 1, + ACTIONS(560), 1, anon_sym_AT_ATr, - ACTIONS(590), 1, + ACTIONS(562), 1, anon_sym_AT_ATs_COLON, - ACTIONS(592), 1, + ACTIONS(564), 1, anon_sym_AT, - ACTIONS(594), 1, + ACTIONS(566), 1, anon_sym_AT_BANG, - ACTIONS(596), 1, + ACTIONS(568), 1, anon_sym_AT_LPAREN, - ACTIONS(598), 1, + ACTIONS(570), 1, anon_sym_ATa_COLON, - ACTIONS(600), 1, + ACTIONS(572), 1, anon_sym_ATb_COLON, - ACTIONS(602), 1, + ACTIONS(574), 1, anon_sym_ATB_COLON, - ACTIONS(604), 1, + ACTIONS(576), 1, anon_sym_ATe_COLON, - ACTIONS(606), 1, + ACTIONS(578), 1, anon_sym_ATF_COLON, - ACTIONS(608), 1, + ACTIONS(580), 1, anon_sym_ATi_COLON, - ACTIONS(610), 1, + ACTIONS(582), 1, anon_sym_ATk_COLON, - ACTIONS(612), 1, + ACTIONS(584), 1, anon_sym_ATo_COLON, - ACTIONS(614), 1, + ACTIONS(586), 1, anon_sym_ATr_COLON, - ACTIONS(616), 1, + ACTIONS(588), 1, anon_sym_ATf_COLON, - ACTIONS(618), 1, + ACTIONS(590), 1, anon_sym_ATs_COLON, - ACTIONS(620), 1, + ACTIONS(592), 1, anon_sym_ATv_COLON, - ACTIONS(622), 1, + ACTIONS(594), 1, anon_sym_ATx_COLON, - ACTIONS(624), 1, + ACTIONS(596), 1, anon_sym_PIPE_DOT, - ACTIONS(954), 3, + ACTIONS(960), 3, anon_sym_PIPE, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(952), 9, + ACTIONS(958), 9, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -23155,100 +23841,100 @@ static uint16_t ts_small_parse_table[] = { sym_html_append_operator, anon_sym_LF, anon_sym_CR, - [11320] = 46, + [11961] = 46, ACTIONS(3), 1, sym__comment, - ACTIONS(540), 1, + ACTIONS(512), 1, anon_sym_PIPEH, - ACTIONS(542), 1, + ACTIONS(514), 1, anon_sym_AT_AT_DOT, - ACTIONS(544), 1, + ACTIONS(516), 1, anon_sym_AT_AT_EQ, - ACTIONS(546), 1, + ACTIONS(518), 1, anon_sym_AT_AT_AT_EQ, - ACTIONS(548), 1, + ACTIONS(520), 1, anon_sym_AT_AT, - ACTIONS(550), 1, + ACTIONS(522), 1, anon_sym_AT_ATc_COLON, - ACTIONS(552), 1, + ACTIONS(524), 1, anon_sym_AT_AT_ATc_COLON, - ACTIONS(554), 1, + ACTIONS(526), 1, anon_sym_AT_ATC, - ACTIONS(556), 1, + ACTIONS(528), 1, anon_sym_AT_ATdbt, - ACTIONS(558), 1, + ACTIONS(530), 1, anon_sym_AT_ATdbta, - ACTIONS(560), 1, + ACTIONS(532), 1, anon_sym_AT_ATdbtb, - ACTIONS(562), 1, + ACTIONS(534), 1, anon_sym_AT_ATdbts, - ACTIONS(564), 1, + ACTIONS(536), 1, anon_sym_AT_ATt, - ACTIONS(566), 1, + ACTIONS(538), 1, anon_sym_AT_ATb, - ACTIONS(568), 1, + ACTIONS(540), 1, anon_sym_AT_ATi, - ACTIONS(570), 1, + ACTIONS(542), 1, anon_sym_AT_ATii, - ACTIONS(572), 1, + ACTIONS(544), 1, anon_sym_AT_ATiS, - ACTIONS(574), 1, + ACTIONS(546), 1, anon_sym_AT_ATiSS, - ACTIONS(576), 1, + ACTIONS(548), 1, anon_sym_AT_ATis, - ACTIONS(578), 1, + ACTIONS(550), 1, anon_sym_AT_ATiz, - ACTIONS(580), 1, + ACTIONS(552), 1, anon_sym_AT_ATf, - ACTIONS(582), 1, + ACTIONS(554), 1, anon_sym_AT_ATF, - ACTIONS(584), 1, + ACTIONS(556), 1, anon_sym_AT_ATom, - ACTIONS(586), 1, + ACTIONS(558), 1, anon_sym_AT_ATdm, - ACTIONS(588), 1, + ACTIONS(560), 1, anon_sym_AT_ATr, - ACTIONS(590), 1, + ACTIONS(562), 1, anon_sym_AT_ATs_COLON, - ACTIONS(592), 1, + ACTIONS(564), 1, anon_sym_AT, - ACTIONS(594), 1, + ACTIONS(566), 1, anon_sym_AT_BANG, - ACTIONS(596), 1, + ACTIONS(568), 1, anon_sym_AT_LPAREN, - ACTIONS(598), 1, + ACTIONS(570), 1, anon_sym_ATa_COLON, - ACTIONS(600), 1, + ACTIONS(572), 1, anon_sym_ATb_COLON, - ACTIONS(602), 1, + ACTIONS(574), 1, anon_sym_ATB_COLON, - ACTIONS(604), 1, + ACTIONS(576), 1, anon_sym_ATe_COLON, - ACTIONS(606), 1, + ACTIONS(578), 1, anon_sym_ATF_COLON, - ACTIONS(608), 1, + ACTIONS(580), 1, anon_sym_ATi_COLON, - ACTIONS(610), 1, + ACTIONS(582), 1, anon_sym_ATk_COLON, - ACTIONS(612), 1, + ACTIONS(584), 1, anon_sym_ATo_COLON, - ACTIONS(614), 1, + ACTIONS(586), 1, anon_sym_ATr_COLON, - ACTIONS(616), 1, + ACTIONS(588), 1, anon_sym_ATf_COLON, - ACTIONS(618), 1, + ACTIONS(590), 1, anon_sym_ATs_COLON, - ACTIONS(620), 1, + ACTIONS(592), 1, anon_sym_ATv_COLON, - ACTIONS(622), 1, + ACTIONS(594), 1, anon_sym_ATx_COLON, - ACTIONS(624), 1, + ACTIONS(596), 1, anon_sym_PIPE_DOT, - ACTIONS(958), 3, + ACTIONS(964), 3, anon_sym_PIPE, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(956), 9, + ACTIONS(962), 9, sym_file_descriptor, ts_builtin_sym_end, anon_sym_TILDE, @@ -23258,235 +23944,234 @@ static uint16_t ts_small_parse_table[] = { sym_html_append_operator, anon_sym_LF, anon_sym_CR, - [11469] = 53, + [12110] = 53, ACTIONS(3), 1, sym__comment, - ACTIONS(540), 1, + ACTIONS(512), 1, anon_sym_PIPEH, - ACTIONS(542), 1, + ACTIONS(514), 1, anon_sym_AT_AT_DOT, - ACTIONS(554), 1, + ACTIONS(526), 1, anon_sym_AT_ATC, - ACTIONS(556), 1, + ACTIONS(528), 1, anon_sym_AT_ATdbt, - ACTIONS(558), 1, + ACTIONS(530), 1, anon_sym_AT_ATdbta, - ACTIONS(560), 1, + ACTIONS(532), 1, anon_sym_AT_ATdbtb, - ACTIONS(562), 1, + ACTIONS(534), 1, anon_sym_AT_ATdbts, - ACTIONS(564), 1, + ACTIONS(536), 1, anon_sym_AT_ATt, - ACTIONS(566), 1, + ACTIONS(538), 1, anon_sym_AT_ATb, - ACTIONS(568), 1, + ACTIONS(540), 1, anon_sym_AT_ATi, - ACTIONS(570), 1, + ACTIONS(542), 1, anon_sym_AT_ATii, - ACTIONS(572), 1, + ACTIONS(544), 1, anon_sym_AT_ATiS, - ACTIONS(574), 1, + ACTIONS(546), 1, anon_sym_AT_ATiSS, - ACTIONS(576), 1, + ACTIONS(548), 1, anon_sym_AT_ATis, - ACTIONS(578), 1, + ACTIONS(550), 1, anon_sym_AT_ATiz, - ACTIONS(580), 1, + ACTIONS(552), 1, anon_sym_AT_ATf, - ACTIONS(582), 1, + ACTIONS(554), 1, anon_sym_AT_ATF, - ACTIONS(584), 1, + ACTIONS(556), 1, anon_sym_AT_ATom, - ACTIONS(586), 1, + ACTIONS(558), 1, anon_sym_AT_ATdm, - ACTIONS(588), 1, + ACTIONS(560), 1, anon_sym_AT_ATr, - ACTIONS(596), 1, + ACTIONS(568), 1, anon_sym_AT_LPAREN, - ACTIONS(598), 1, + ACTIONS(570), 1, anon_sym_ATa_COLON, - ACTIONS(602), 1, + ACTIONS(574), 1, anon_sym_ATB_COLON, - ACTIONS(604), 1, + ACTIONS(576), 1, anon_sym_ATe_COLON, - ACTIONS(606), 1, + ACTIONS(578), 1, anon_sym_ATF_COLON, - ACTIONS(610), 1, + ACTIONS(582), 1, anon_sym_ATk_COLON, - ACTIONS(614), 1, + ACTIONS(586), 1, anon_sym_ATr_COLON, - ACTIONS(616), 1, + ACTIONS(588), 1, anon_sym_ATf_COLON, - ACTIONS(618), 1, + ACTIONS(590), 1, anon_sym_ATs_COLON, - ACTIONS(620), 1, + ACTIONS(592), 1, anon_sym_ATv_COLON, - ACTIONS(622), 1, + ACTIONS(594), 1, anon_sym_ATx_COLON, - ACTIONS(624), 1, + ACTIONS(596), 1, anon_sym_PIPE_DOT, - ACTIONS(626), 1, + ACTIONS(598), 1, anon_sym_GT, - ACTIONS(628), 1, + ACTIONS(600), 1, anon_sym_GT_GT, - ACTIONS(630), 1, + ACTIONS(602), 1, sym_html_redirect_operator, - ACTIONS(632), 1, + ACTIONS(604), 1, sym_html_append_operator, - ACTIONS(634), 1, + ACTIONS(606), 1, sym_file_descriptor, - ACTIONS(960), 1, - anon_sym_TILDE, - ACTIONS(962), 1, - anon_sym_PIPE, - ACTIONS(964), 1, - anon_sym_AT_AT_EQ, ACTIONS(966), 1, - anon_sym_AT_AT_AT_EQ, + anon_sym_TILDE, ACTIONS(968), 1, - anon_sym_AT_AT, + anon_sym_PIPE, ACTIONS(970), 1, - anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_EQ, ACTIONS(972), 1, - anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_AT_AT_EQ, ACTIONS(974), 1, - anon_sym_AT_ATs_COLON, + anon_sym_AT_AT, ACTIONS(976), 1, - anon_sym_AT, + anon_sym_AT_ATc_COLON, ACTIONS(978), 1, - anon_sym_AT_BANG, + anon_sym_AT_AT_ATc_COLON, ACTIONS(980), 1, - anon_sym_ATb_COLON, + anon_sym_AT_ATs_COLON, ACTIONS(982), 1, - anon_sym_ATi_COLON, + anon_sym_AT, ACTIONS(984), 1, + anon_sym_AT_BANG, + ACTIONS(986), 1, + anon_sym_ATb_COLON, + ACTIONS(988), 1, + anon_sym_ATi_COLON, + ACTIONS(990), 1, anon_sym_ATo_COLON, - ACTIONS(534), 2, + ACTIONS(506), 2, anon_sym_SEMI, anon_sym_BQUOTE, - STATE(300), 3, + STATE(315), 3, sym__redirect_operator, sym_fdn_redirect_operator, sym_fdn_append_operator, - [11632] = 53, + [12273] = 53, ACTIONS(3), 1, sym__comment, - ACTIONS(540), 1, + ACTIONS(512), 1, anon_sym_PIPEH, - ACTIONS(542), 1, + ACTIONS(514), 1, anon_sym_AT_AT_DOT, - ACTIONS(544), 1, + ACTIONS(516), 1, anon_sym_AT_AT_EQ, - ACTIONS(546), 1, + ACTIONS(518), 1, anon_sym_AT_AT_AT_EQ, - ACTIONS(548), 1, + ACTIONS(520), 1, anon_sym_AT_AT, - ACTIONS(550), 1, + ACTIONS(522), 1, anon_sym_AT_ATc_COLON, - ACTIONS(552), 1, + ACTIONS(524), 1, anon_sym_AT_AT_ATc_COLON, - ACTIONS(554), 1, + ACTIONS(526), 1, anon_sym_AT_ATC, - ACTIONS(556), 1, + ACTIONS(528), 1, anon_sym_AT_ATdbt, - ACTIONS(558), 1, + ACTIONS(530), 1, anon_sym_AT_ATdbta, - ACTIONS(560), 1, + ACTIONS(532), 1, anon_sym_AT_ATdbtb, - ACTIONS(562), 1, + ACTIONS(534), 1, anon_sym_AT_ATdbts, - ACTIONS(564), 1, + ACTIONS(536), 1, anon_sym_AT_ATt, - ACTIONS(566), 1, + ACTIONS(538), 1, anon_sym_AT_ATb, - ACTIONS(568), 1, + ACTIONS(540), 1, anon_sym_AT_ATi, - ACTIONS(570), 1, + ACTIONS(542), 1, anon_sym_AT_ATii, - ACTIONS(572), 1, + ACTIONS(544), 1, anon_sym_AT_ATiS, - ACTIONS(574), 1, + ACTIONS(546), 1, anon_sym_AT_ATiSS, - ACTIONS(576), 1, + ACTIONS(548), 1, anon_sym_AT_ATis, - ACTIONS(578), 1, + ACTIONS(550), 1, anon_sym_AT_ATiz, - ACTIONS(580), 1, + ACTIONS(552), 1, anon_sym_AT_ATf, - ACTIONS(582), 1, + ACTIONS(554), 1, anon_sym_AT_ATF, - ACTIONS(584), 1, + ACTIONS(556), 1, anon_sym_AT_ATom, - ACTIONS(586), 1, + ACTIONS(558), 1, anon_sym_AT_ATdm, - ACTIONS(588), 1, + ACTIONS(560), 1, anon_sym_AT_ATr, - ACTIONS(590), 1, + ACTIONS(562), 1, anon_sym_AT_ATs_COLON, - ACTIONS(592), 1, + ACTIONS(564), 1, anon_sym_AT, - ACTIONS(594), 1, + ACTIONS(566), 1, anon_sym_AT_BANG, - ACTIONS(596), 1, + ACTIONS(568), 1, anon_sym_AT_LPAREN, - ACTIONS(598), 1, + ACTIONS(570), 1, anon_sym_ATa_COLON, - ACTIONS(600), 1, + ACTIONS(572), 1, anon_sym_ATb_COLON, - ACTIONS(602), 1, + ACTIONS(574), 1, anon_sym_ATB_COLON, - ACTIONS(604), 1, + ACTIONS(576), 1, anon_sym_ATe_COLON, - ACTIONS(606), 1, + ACTIONS(578), 1, anon_sym_ATF_COLON, - ACTIONS(608), 1, + ACTIONS(580), 1, anon_sym_ATi_COLON, - ACTIONS(610), 1, + ACTIONS(582), 1, anon_sym_ATk_COLON, - ACTIONS(612), 1, + ACTIONS(584), 1, anon_sym_ATo_COLON, - ACTIONS(614), 1, + ACTIONS(586), 1, anon_sym_ATr_COLON, - ACTIONS(616), 1, + ACTIONS(588), 1, anon_sym_ATf_COLON, - ACTIONS(618), 1, + ACTIONS(590), 1, anon_sym_ATs_COLON, - ACTIONS(620), 1, + ACTIONS(592), 1, anon_sym_ATv_COLON, - ACTIONS(622), 1, + ACTIONS(594), 1, anon_sym_ATx_COLON, - ACTIONS(624), 1, + ACTIONS(596), 1, anon_sym_PIPE_DOT, - ACTIONS(626), 1, + ACTIONS(598), 1, anon_sym_GT, - ACTIONS(628), 1, + ACTIONS(600), 1, anon_sym_GT_GT, - ACTIONS(630), 1, + ACTIONS(602), 1, sym_html_redirect_operator, - ACTIONS(632), 1, + ACTIONS(604), 1, sym_html_append_operator, - ACTIONS(634), 1, + ACTIONS(606), 1, sym_file_descriptor, - ACTIONS(986), 1, + ACTIONS(992), 1, anon_sym_TILDE, - ACTIONS(988), 1, + ACTIONS(994), 1, anon_sym_PIPE, - ACTIONS(534), 2, + ACTIONS(506), 2, anon_sym_RPAREN, anon_sym_SEMI, - STATE(300), 3, + STATE(315), 3, sym__redirect_operator, sym_fdn_redirect_operator, sym_fdn_append_operator, - [11795] = 4, - ACTIONS(376), 1, + [12436] = 4, + ACTIONS(380), 1, sym__comment, - ACTIONS(994), 1, - sym_pipe_second_command, - ACTIONS(990), 2, + ACTIONS(952), 1, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(992), 52, + ACTIONS(956), 1, + sym_pipe_second_command, + ACTIONS(954), 51, anon_sym_TILDE, anon_sym_PIPE, anon_sym_PIPEH, @@ -23537,131 +24222,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, sym_html_redirect_operator, sym_html_append_operator, - anon_sym_LF, - anon_sym_CR, - [11860] = 4, + anon_sym_BQUOTE, + [12499] = 4, + ACTIONS(380), 1, + sym__comment, + ACTIONS(952), 1, + sym_file_descriptor, + ACTIONS(956), 1, + sym_pipe_second_command, + ACTIONS(954), 51, + anon_sym_TILDE, + anon_sym_PIPE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_AT, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbt, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATi, + anon_sym_AT_ATii, + anon_sym_AT_ATiS, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_RPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_GT_GT, + sym_html_redirect_operator, + sym_html_append_operator, + [12562] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(996), 1, sym__concat_pf_dot, - ACTIONS(676), 8, - anon_sym_PIPE, - anon_sym_AT_AT, - anon_sym_AT_ATdbt, - anon_sym_AT_ATi, - anon_sym_AT_ATiS, - anon_sym_AT, - anon_sym_GT, - sym_html_redirect_operator, - ACTIONS(674), 44, - sym_file_descriptor, - anon_sym_TILDE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATii, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT_GT, - sym_html_append_operator, - anon_sym_BQUOTE, - [11923] = 4, - ACTIONS(376), 1, - sym__comment, - ACTIONS(990), 1, - sym_file_descriptor, - ACTIONS(994), 1, - sym_pipe_second_command, - ACTIONS(992), 51, - anon_sym_TILDE, - anon_sym_PIPE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_AT, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbt, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATi, - anon_sym_AT_ATii, - anon_sym_AT_ATiS, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, - anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT, - anon_sym_GT_GT, - sym_html_redirect_operator, - sym_html_append_operator, - anon_sym_BQUOTE, - [11986] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(998), 1, - anon_sym_EQ, ACTIONS(658), 8, anon_sym_PIPE, anon_sym_AT_AT, @@ -23716,269 +24341,269 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, sym_html_append_operator, anon_sym_BQUOTE, - [12049] = 4, - ACTIONS(376), 1, + [12625] = 4, + ACTIONS(3), 1, sym__comment, + ACTIONS(998), 1, + anon_sym_EQ, + ACTIONS(768), 8, + anon_sym_PIPE, + anon_sym_AT_AT, + anon_sym_AT_ATdbt, + anon_sym_AT_ATi, + anon_sym_AT_ATiS, + anon_sym_AT, + anon_sym_GT, + sym_html_redirect_operator, + ACTIONS(766), 44, + sym_file_descriptor, + anon_sym_TILDE, + anon_sym_PIPEH, + anon_sym_AT_AT_DOT, + anon_sym_AT_AT_EQ, + anon_sym_AT_AT_AT_EQ, + anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_ATC, + anon_sym_AT_ATdbta, + anon_sym_AT_ATdbtb, + anon_sym_AT_ATdbts, + anon_sym_AT_ATt, + anon_sym_AT_ATb, + anon_sym_AT_ATii, + anon_sym_AT_ATiSS, + anon_sym_AT_ATis, + anon_sym_AT_ATiz, + anon_sym_AT_ATf, + anon_sym_AT_ATF, + anon_sym_AT_ATom, + anon_sym_AT_ATdm, + anon_sym_AT_ATr, + anon_sym_AT_ATs_COLON, + anon_sym_AT_BANG, + anon_sym_AT_LPAREN, + anon_sym_ATa_COLON, + anon_sym_ATb_COLON, + anon_sym_ATB_COLON, + anon_sym_ATe_COLON, + anon_sym_ATF_COLON, + anon_sym_ATi_COLON, + anon_sym_ATk_COLON, + anon_sym_ATo_COLON, + anon_sym_ATr_COLON, + anon_sym_ATf_COLON, + anon_sym_ATs_COLON, + anon_sym_ATv_COLON, + anon_sym_ATx_COLON, + anon_sym_PIPE_DOT, + anon_sym_SEMI, + anon_sym_GT_GT, + sym_html_append_operator, + anon_sym_BQUOTE, + [12688] = 46, + ACTIONS(3), 1, + sym__comment, + ACTIONS(512), 1, + anon_sym_PIPEH, + ACTIONS(514), 1, + anon_sym_AT_AT_DOT, + ACTIONS(526), 1, + anon_sym_AT_ATC, + ACTIONS(528), 1, + anon_sym_AT_ATdbt, + ACTIONS(530), 1, + anon_sym_AT_ATdbta, + ACTIONS(532), 1, + anon_sym_AT_ATdbtb, + ACTIONS(534), 1, + anon_sym_AT_ATdbts, + ACTIONS(536), 1, + anon_sym_AT_ATt, + ACTIONS(538), 1, + anon_sym_AT_ATb, + ACTIONS(540), 1, + anon_sym_AT_ATi, + ACTIONS(542), 1, + anon_sym_AT_ATii, + ACTIONS(544), 1, + anon_sym_AT_ATiS, + ACTIONS(546), 1, + anon_sym_AT_ATiSS, + ACTIONS(548), 1, + anon_sym_AT_ATis, + ACTIONS(550), 1, + anon_sym_AT_ATiz, + ACTIONS(552), 1, + anon_sym_AT_ATf, + ACTIONS(554), 1, + anon_sym_AT_ATF, + ACTIONS(556), 1, + anon_sym_AT_ATom, + ACTIONS(558), 1, + anon_sym_AT_ATdm, + ACTIONS(560), 1, + anon_sym_AT_ATr, + ACTIONS(568), 1, + anon_sym_AT_LPAREN, + ACTIONS(570), 1, + anon_sym_ATa_COLON, + ACTIONS(574), 1, + anon_sym_ATB_COLON, + ACTIONS(576), 1, + anon_sym_ATe_COLON, + ACTIONS(578), 1, + anon_sym_ATF_COLON, + ACTIONS(582), 1, + anon_sym_ATk_COLON, + ACTIONS(586), 1, + anon_sym_ATr_COLON, + ACTIONS(588), 1, + anon_sym_ATf_COLON, + ACTIONS(590), 1, + anon_sym_ATs_COLON, + ACTIONS(592), 1, + anon_sym_ATv_COLON, + ACTIONS(594), 1, + anon_sym_ATx_COLON, + ACTIONS(596), 1, + anon_sym_PIPE_DOT, + ACTIONS(970), 1, + anon_sym_AT_AT_EQ, + ACTIONS(972), 1, + anon_sym_AT_AT_AT_EQ, + ACTIONS(974), 1, + anon_sym_AT_AT, + ACTIONS(976), 1, + anon_sym_AT_ATc_COLON, + ACTIONS(978), 1, + anon_sym_AT_AT_ATc_COLON, + ACTIONS(980), 1, + anon_sym_AT_ATs_COLON, + ACTIONS(982), 1, + anon_sym_AT, + ACTIONS(984), 1, + anon_sym_AT_BANG, + ACTIONS(986), 1, + anon_sym_ATb_COLON, + ACTIONS(988), 1, + anon_sym_ATi_COLON, ACTIONS(990), 1, - sym_file_descriptor, - ACTIONS(994), 1, - sym_pipe_second_command, - ACTIONS(992), 51, - anon_sym_TILDE, - anon_sym_PIPE, - anon_sym_PIPEH, - anon_sym_AT_AT_DOT, - anon_sym_AT_AT_EQ, - anon_sym_AT_AT_AT_EQ, - anon_sym_AT_AT, - anon_sym_AT_ATc_COLON, - anon_sym_AT_AT_ATc_COLON, - anon_sym_AT_ATC, - anon_sym_AT_ATdbt, - anon_sym_AT_ATdbta, - anon_sym_AT_ATdbtb, - anon_sym_AT_ATdbts, - anon_sym_AT_ATt, - anon_sym_AT_ATb, - anon_sym_AT_ATi, - anon_sym_AT_ATii, - anon_sym_AT_ATiS, - anon_sym_AT_ATiSS, - anon_sym_AT_ATis, - anon_sym_AT_ATiz, - anon_sym_AT_ATf, - anon_sym_AT_ATF, - anon_sym_AT_ATom, - anon_sym_AT_ATdm, - anon_sym_AT_ATr, - anon_sym_AT_ATs_COLON, - anon_sym_AT, - anon_sym_AT_BANG, - anon_sym_AT_LPAREN, - anon_sym_RPAREN, - anon_sym_ATa_COLON, - anon_sym_ATb_COLON, - anon_sym_ATB_COLON, - anon_sym_ATe_COLON, - anon_sym_ATF_COLON, - anon_sym_ATi_COLON, - anon_sym_ATk_COLON, anon_sym_ATo_COLON, - anon_sym_ATr_COLON, - anon_sym_ATf_COLON, - anon_sym_ATs_COLON, - anon_sym_ATv_COLON, - anon_sym_ATx_COLON, - anon_sym_PIPE_DOT, - anon_sym_SEMI, - anon_sym_GT, - anon_sym_GT_GT, - sym_html_redirect_operator, - sym_html_append_operator, - [12112] = 46, - ACTIONS(3), 1, - sym__comment, - ACTIONS(540), 1, - anon_sym_PIPEH, - ACTIONS(542), 1, - anon_sym_AT_AT_DOT, - ACTIONS(554), 1, - anon_sym_AT_ATC, - ACTIONS(556), 1, - anon_sym_AT_ATdbt, - ACTIONS(558), 1, - anon_sym_AT_ATdbta, - ACTIONS(560), 1, - anon_sym_AT_ATdbtb, - ACTIONS(562), 1, - anon_sym_AT_ATdbts, - ACTIONS(564), 1, - anon_sym_AT_ATt, - ACTIONS(566), 1, - anon_sym_AT_ATb, - ACTIONS(568), 1, - anon_sym_AT_ATi, - ACTIONS(570), 1, - anon_sym_AT_ATii, - ACTIONS(572), 1, - anon_sym_AT_ATiS, - ACTIONS(574), 1, - anon_sym_AT_ATiSS, - ACTIONS(576), 1, - anon_sym_AT_ATis, - ACTIONS(578), 1, - anon_sym_AT_ATiz, - ACTIONS(580), 1, - anon_sym_AT_ATf, - ACTIONS(582), 1, - anon_sym_AT_ATF, - ACTIONS(584), 1, - anon_sym_AT_ATom, - ACTIONS(586), 1, - anon_sym_AT_ATdm, - ACTIONS(588), 1, - anon_sym_AT_ATr, - ACTIONS(596), 1, - anon_sym_AT_LPAREN, - ACTIONS(598), 1, - anon_sym_ATa_COLON, - ACTIONS(602), 1, - anon_sym_ATB_COLON, - ACTIONS(604), 1, - anon_sym_ATe_COLON, - ACTIONS(606), 1, - anon_sym_ATF_COLON, - ACTIONS(610), 1, - anon_sym_ATk_COLON, - ACTIONS(614), 1, - anon_sym_ATr_COLON, - ACTIONS(616), 1, - anon_sym_ATf_COLON, - ACTIONS(618), 1, - anon_sym_ATs_COLON, - ACTIONS(620), 1, - anon_sym_ATv_COLON, - ACTIONS(622), 1, - anon_sym_ATx_COLON, - ACTIONS(624), 1, - anon_sym_PIPE_DOT, - ACTIONS(964), 1, - anon_sym_AT_AT_EQ, - ACTIONS(966), 1, - anon_sym_AT_AT_AT_EQ, - ACTIONS(968), 1, - anon_sym_AT_AT, - ACTIONS(970), 1, - anon_sym_AT_ATc_COLON, - ACTIONS(972), 1, - anon_sym_AT_AT_ATc_COLON, - ACTIONS(974), 1, - anon_sym_AT_ATs_COLON, - ACTIONS(976), 1, - anon_sym_AT, - ACTIONS(978), 1, - anon_sym_AT_BANG, - ACTIONS(980), 1, - anon_sym_ATb_COLON, - ACTIONS(982), 1, - anon_sym_ATi_COLON, - ACTIONS(984), 1, - anon_sym_ATo_COLON, - ACTIONS(958), 3, + ACTIONS(964), 3, anon_sym_PIPE, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(956), 6, + ACTIONS(962), 6, sym_file_descriptor, anon_sym_TILDE, anon_sym_SEMI, anon_sym_GT_GT, sym_html_append_operator, anon_sym_BQUOTE, - [12258] = 46, + [12834] = 46, ACTIONS(3), 1, sym__comment, - ACTIONS(540), 1, + ACTIONS(512), 1, anon_sym_PIPEH, - ACTIONS(542), 1, + ACTIONS(514), 1, anon_sym_AT_AT_DOT, - ACTIONS(554), 1, + ACTIONS(526), 1, anon_sym_AT_ATC, - ACTIONS(556), 1, + ACTIONS(528), 1, anon_sym_AT_ATdbt, - ACTIONS(558), 1, + ACTIONS(530), 1, anon_sym_AT_ATdbta, - ACTIONS(560), 1, + ACTIONS(532), 1, anon_sym_AT_ATdbtb, - ACTIONS(562), 1, + ACTIONS(534), 1, anon_sym_AT_ATdbts, - ACTIONS(564), 1, + ACTIONS(536), 1, anon_sym_AT_ATt, - ACTIONS(566), 1, + ACTIONS(538), 1, anon_sym_AT_ATb, - ACTIONS(568), 1, + ACTIONS(540), 1, anon_sym_AT_ATi, - ACTIONS(570), 1, + ACTIONS(542), 1, anon_sym_AT_ATii, - ACTIONS(572), 1, + ACTIONS(544), 1, anon_sym_AT_ATiS, - ACTIONS(574), 1, + ACTIONS(546), 1, anon_sym_AT_ATiSS, - ACTIONS(576), 1, + ACTIONS(548), 1, anon_sym_AT_ATis, - ACTIONS(578), 1, + ACTIONS(550), 1, anon_sym_AT_ATiz, - ACTIONS(580), 1, + ACTIONS(552), 1, anon_sym_AT_ATf, - ACTIONS(582), 1, + ACTIONS(554), 1, anon_sym_AT_ATF, - ACTIONS(584), 1, + ACTIONS(556), 1, anon_sym_AT_ATom, - ACTIONS(586), 1, + ACTIONS(558), 1, anon_sym_AT_ATdm, - ACTIONS(588), 1, + ACTIONS(560), 1, anon_sym_AT_ATr, - ACTIONS(596), 1, + ACTIONS(568), 1, anon_sym_AT_LPAREN, - ACTIONS(598), 1, + ACTIONS(570), 1, anon_sym_ATa_COLON, - ACTIONS(602), 1, + ACTIONS(574), 1, anon_sym_ATB_COLON, - ACTIONS(604), 1, + ACTIONS(576), 1, anon_sym_ATe_COLON, - ACTIONS(606), 1, + ACTIONS(578), 1, anon_sym_ATF_COLON, - ACTIONS(610), 1, + ACTIONS(582), 1, anon_sym_ATk_COLON, - ACTIONS(614), 1, + ACTIONS(586), 1, anon_sym_ATr_COLON, - ACTIONS(616), 1, + ACTIONS(588), 1, anon_sym_ATf_COLON, - ACTIONS(618), 1, + ACTIONS(590), 1, anon_sym_ATs_COLON, - ACTIONS(620), 1, + ACTIONS(592), 1, anon_sym_ATv_COLON, - ACTIONS(622), 1, + ACTIONS(594), 1, anon_sym_ATx_COLON, - ACTIONS(624), 1, + ACTIONS(596), 1, anon_sym_PIPE_DOT, - ACTIONS(964), 1, - anon_sym_AT_AT_EQ, - ACTIONS(966), 1, - anon_sym_AT_AT_AT_EQ, - ACTIONS(968), 1, - anon_sym_AT_AT, ACTIONS(970), 1, - anon_sym_AT_ATc_COLON, + anon_sym_AT_AT_EQ, ACTIONS(972), 1, - anon_sym_AT_AT_ATc_COLON, + anon_sym_AT_AT_AT_EQ, ACTIONS(974), 1, - anon_sym_AT_ATs_COLON, + anon_sym_AT_AT, ACTIONS(976), 1, - anon_sym_AT, + anon_sym_AT_ATc_COLON, ACTIONS(978), 1, - anon_sym_AT_BANG, + anon_sym_AT_AT_ATc_COLON, ACTIONS(980), 1, - anon_sym_ATb_COLON, + anon_sym_AT_ATs_COLON, ACTIONS(982), 1, - anon_sym_ATi_COLON, + anon_sym_AT, ACTIONS(984), 1, + anon_sym_AT_BANG, + ACTIONS(986), 1, + anon_sym_ATb_COLON, + ACTIONS(988), 1, + anon_sym_ATi_COLON, + ACTIONS(990), 1, anon_sym_ATo_COLON, - ACTIONS(954), 3, + ACTIONS(960), 3, anon_sym_PIPE, anon_sym_GT, sym_html_redirect_operator, - ACTIONS(952), 6, + ACTIONS(958), 6, sym_file_descriptor, anon_sym_TILDE, anon_sym_SEMI, anon_sym_GT_GT, sym_html_append_operator, anon_sym_BQUOTE, - [12404] = 5, + [12980] = 5, ACTIONS(3), 1, sym__comment, - STATE(264), 1, + STATE(273), 1, aux_sym_commands_repeat1, ACTIONS(1004), 3, anon_sym_SEMI, @@ -24012,12 +24637,12 @@ static uint16_t ts_small_parse_table[] = { sym_pointer_identifier, sym_macro_identifier, aux_sym__dec_number_token1, - [12446] = 5, + [13022] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(1011), 1, anon_sym_SEMI, - STATE(265), 1, + STATE(274), 1, aux_sym__commands_singleline_repeat1, ACTIONS(1009), 6, anon_sym_0, @@ -24046,118 +24671,118 @@ static uint16_t ts_small_parse_table[] = { sym_pointer_identifier, sym_macro_identifier, aux_sym__dec_number_token1, - [12485] = 15, + [13061] = 15, ACTIONS(3), 1, sym__comment, - ACTIONS(153), 1, + ACTIONS(141), 1, anon_sym_DQUOTE, - ACTIONS(157), 1, + ACTIONS(145), 1, anon_sym_DOLLAR, - ACTIONS(159), 1, + ACTIONS(147), 1, anon_sym_LPAREN, - ACTIONS(161), 1, + ACTIONS(149), 1, anon_sym_COMMA, - ACTIONS(163), 1, + ACTIONS(151), 1, anon_sym_SQUOTE, - ACTIONS(165), 1, + ACTIONS(153), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(167), 1, + ACTIONS(155), 1, anon_sym_BQUOTE, ACTIONS(1014), 1, anon_sym_RPAREN, ACTIONS(1016), 1, - aux_sym_arg_identifier_token1, - STATE(245), 1, - sym_macro_call_content, - STATE(333), 1, - sym_concatenation, - STATE(469), 1, - sym_args, - STATE(270), 2, - sym_arg, - aux_sym_args_repeat1, - STATE(311), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [12537] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(153), 1, - anon_sym_DQUOTE, - ACTIONS(157), 1, - anon_sym_DOLLAR, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(161), 1, - anon_sym_COMMA, - ACTIONS(163), 1, - anon_sym_SQUOTE, - ACTIONS(165), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(167), 1, - anon_sym_BQUOTE, - ACTIONS(1014), 1, - anon_sym_RPAREN, - ACTIONS(1016), 1, - aux_sym_arg_identifier_token1, - STATE(228), 1, - sym_macro_call_content, - STATE(333), 1, - sym_concatenation, - STATE(469), 1, - sym_args, - STATE(270), 2, - sym_arg, - aux_sym_args_repeat1, - STATE(311), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [12589] = 15, - ACTIONS(3), 1, - sym__comment, - ACTIONS(153), 1, - anon_sym_DQUOTE, - ACTIONS(157), 1, - anon_sym_DOLLAR, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(161), 1, - anon_sym_COMMA, - ACTIONS(163), 1, - anon_sym_SQUOTE, - ACTIONS(165), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(167), 1, - anon_sym_BQUOTE, - ACTIONS(1016), 1, - aux_sym_arg_identifier_token1, - ACTIONS(1018), 1, - anon_sym_RPAREN, - ACTIONS(1020), 1, anon_sym_SEMI, - STATE(333), 1, + ACTIONS(1018), 1, + aux_sym_arg_identifier_token1, + STATE(339), 1, sym_concatenation, - STATE(443), 1, + STATE(447), 1, sym_args, - STATE(270), 2, + STATE(279), 2, sym_arg, aux_sym_args_repeat1, - STATE(311), 6, + STATE(319), 6, sym__arg_with_paren, sym__arg, sym_arg_identifier, sym_double_quoted_arg, sym_single_quoted_arg, sym_cmd_substitution_arg, - [12641] = 13, + [13113] = 15, + ACTIONS(3), 1, + sym__comment, + ACTIONS(141), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_DOLLAR, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(149), 1, + anon_sym_COMMA, + ACTIONS(151), 1, + anon_sym_SQUOTE, + ACTIONS(153), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(155), 1, + anon_sym_BQUOTE, + ACTIONS(1018), 1, + aux_sym_arg_identifier_token1, + ACTIONS(1020), 1, + anon_sym_RPAREN, + STATE(219), 1, + sym_macro_call_content, + STATE(339), 1, + sym_concatenation, + STATE(490), 1, + sym_args, + STATE(279), 2, + sym_arg, + aux_sym_args_repeat1, + STATE(319), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [13165] = 15, + ACTIONS(3), 1, + sym__comment, + ACTIONS(141), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_DOLLAR, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(149), 1, + anon_sym_COMMA, + ACTIONS(151), 1, + anon_sym_SQUOTE, + ACTIONS(153), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(155), 1, + anon_sym_BQUOTE, + ACTIONS(1018), 1, + aux_sym_arg_identifier_token1, + ACTIONS(1020), 1, + anon_sym_RPAREN, + STATE(198), 1, + sym_macro_call_content, + STATE(339), 1, + sym_concatenation, + STATE(490), 1, + sym_args, + STATE(279), 2, + sym_arg, + aux_sym_args_repeat1, + STATE(319), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [13217] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(1022), 1, @@ -24176,56 +24801,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(1043), 1, anon_sym_BQUOTE, - STATE(333), 1, + STATE(339), 1, + sym_concatenation, + ACTIONS(177), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + STATE(278), 2, + sym_arg, + aux_sym_args_repeat1, + STATE(319), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [13264] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(141), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_DOLLAR, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(149), 1, + anon_sym_COMMA, + ACTIONS(151), 1, + anon_sym_SQUOTE, + ACTIONS(153), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(155), 1, + anon_sym_BQUOTE, + ACTIONS(1018), 1, + aux_sym_arg_identifier_token1, + STATE(339), 1, sym_concatenation, ACTIONS(173), 2, anon_sym_RPAREN, anon_sym_SEMI, - STATE(269), 2, + STATE(278), 2, sym_arg, aux_sym_args_repeat1, - STATE(311), 6, + STATE(319), 6, sym__arg_with_paren, sym__arg, sym_arg_identifier, sym_double_quoted_arg, sym_single_quoted_arg, sym_cmd_substitution_arg, - [12688] = 13, + [13311] = 13, ACTIONS(3), 1, sym__comment, + ACTIONS(141), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_DOLLAR, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(149), 1, + anon_sym_COMMA, + ACTIONS(151), 1, + anon_sym_SQUOTE, ACTIONS(153), 1, - anon_sym_DQUOTE, - ACTIONS(157), 1, - anon_sym_DOLLAR, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(161), 1, - anon_sym_COMMA, - ACTIONS(163), 1, - anon_sym_SQUOTE, - ACTIONS(165), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(167), 1, + ACTIONS(155), 1, anon_sym_BQUOTE, - ACTIONS(1016), 1, + ACTIONS(1018), 1, aux_sym_arg_identifier_token1, - STATE(333), 1, + STATE(339), 1, sym_concatenation, - ACTIONS(216), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - STATE(269), 2, + STATE(480), 1, + sym_args, + STATE(279), 2, sym_arg, aux_sym_args_repeat1, - STATE(311), 6, + STATE(319), 6, sym__arg_with_paren, sym__arg, sym_arg_identifier, sym_double_quoted_arg, sym_single_quoted_arg, sym_cmd_substitution_arg, - [12735] = 13, + [13357] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(111), 1, @@ -24244,253 +24902,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1046), 1, aux_sym_arg_identifier_token1, - STATE(91), 1, + STATE(87), 1, sym_concatenation, - STATE(185), 1, + STATE(219), 1, sym_args, - STATE(68), 2, + STATE(69), 2, sym_arg, aux_sym_args_repeat1, - STATE(76), 6, + STATE(74), 6, sym__arg_with_paren, sym__arg, sym_arg_identifier, sym_double_quoted_arg, sym_single_quoted_arg, sym_cmd_substitution_arg, - [12781] = 14, + [13403] = 13, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, + ACTIONS(141), 1, anon_sym_DQUOTE, - ACTIONS(1050), 1, + ACTIONS(145), 1, anon_sym_DOLLAR, - ACTIONS(1052), 1, + ACTIONS(147), 1, anon_sym_LPAREN, - ACTIONS(1054), 1, + ACTIONS(149), 1, anon_sym_COMMA, - ACTIONS(1056), 1, - aux_sym_arg_identifier_token1, - ACTIONS(1058), 1, + ACTIONS(151), 1, anon_sym_SQUOTE, - ACTIONS(1060), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1062), 1, - anon_sym_BQUOTE, - STATE(226), 1, - sym__eq_sep_val_concatenation, - STATE(227), 1, - sym__eq_sep_val, - STATE(444), 1, - sym_arg, - STATE(482), 1, - sym_concatenation, - STATE(111), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [12829] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_LPAREN, - ACTIONS(119), 1, - anon_sym_COMMA, - ACTIONS(121), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_BQUOTE, - ACTIONS(1046), 1, - aux_sym_arg_identifier_token1, - STATE(91), 1, - sym_concatenation, - STATE(181), 1, - sym_args, - STATE(56), 2, - sym_arg, - aux_sym_args_repeat1, - STATE(76), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [12875] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_LPAREN, - ACTIONS(119), 1, - anon_sym_COMMA, - ACTIONS(121), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_BQUOTE, - ACTIONS(1046), 1, - aux_sym_arg_identifier_token1, - STATE(91), 1, - sym_concatenation, - STATE(245), 1, - sym_args, - STATE(68), 2, - sym_arg, - aux_sym_args_repeat1, - STATE(76), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [12921] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_LPAREN, - ACTIONS(119), 1, - anon_sym_COMMA, - ACTIONS(121), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_BQUOTE, - ACTIONS(1046), 1, - aux_sym_arg_identifier_token1, - STATE(91), 1, - sym_concatenation, - STATE(182), 1, - sym_args, - STATE(56), 2, - sym_arg, - aux_sym_args_repeat1, - STATE(76), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [12967] = 13, - ACTIONS(3), 1, - sym__comment, ACTIONS(153), 1, - anon_sym_DQUOTE, - ACTIONS(157), 1, - anon_sym_DOLLAR, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(161), 1, - anon_sym_COMMA, - ACTIONS(163), 1, - anon_sym_SQUOTE, - ACTIONS(165), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(167), 1, + ACTIONS(155), 1, anon_sym_BQUOTE, - ACTIONS(1016), 1, + ACTIONS(1018), 1, aux_sym_arg_identifier_token1, - STATE(333), 1, + STATE(339), 1, sym_concatenation, - STATE(478), 1, + STATE(499), 1, sym_args, - STATE(270), 2, + STATE(279), 2, sym_arg, aux_sym_args_repeat1, - STATE(311), 6, + STATE(319), 6, sym__arg_with_paren, sym__arg, sym_arg_identifier, sym_double_quoted_arg, sym_single_quoted_arg, sym_cmd_substitution_arg, - [13013] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(153), 1, - anon_sym_DQUOTE, - ACTIONS(157), 1, - anon_sym_DOLLAR, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(161), 1, - anon_sym_COMMA, - ACTIONS(163), 1, - anon_sym_SQUOTE, - ACTIONS(165), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(167), 1, - anon_sym_BQUOTE, - ACTIONS(1016), 1, - aux_sym_arg_identifier_token1, - STATE(333), 1, - sym_concatenation, - STATE(474), 1, - sym_args, - STATE(270), 2, - sym_arg, - aux_sym_args_repeat1, - STATE(311), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [13059] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(153), 1, - anon_sym_DQUOTE, - ACTIONS(157), 1, - anon_sym_DOLLAR, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(161), 1, - anon_sym_COMMA, - ACTIONS(163), 1, - anon_sym_SQUOTE, - ACTIONS(165), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(167), 1, - anon_sym_BQUOTE, - ACTIONS(1016), 1, - aux_sym_arg_identifier_token1, - STATE(333), 1, - sym_concatenation, - STATE(450), 1, - sym_args, - STATE(270), 2, - sym_arg, - aux_sym_args_repeat1, - STATE(311), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [13105] = 13, + [13449] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(111), 1, @@ -24509,483 +24968,87 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1046), 1, aux_sym_arg_identifier_token1, - STATE(91), 1, + STATE(87), 1, sym_concatenation, STATE(192), 1, sym_args, - STATE(56), 2, + STATE(69), 2, sym_arg, aux_sym_args_repeat1, - STATE(76), 6, + STATE(74), 6, sym__arg_with_paren, sym__arg, sym_arg_identifier, sym_double_quoted_arg, sym_single_quoted_arg, sym_cmd_substitution_arg, - [13151] = 13, + [13495] = 13, ACTIONS(3), 1, sym__comment, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(119), 1, + anon_sym_COMMA, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_BQUOTE, + ACTIONS(1046), 1, + aux_sym_arg_identifier_token1, + STATE(87), 1, + sym_concatenation, + STATE(203), 1, + sym_args, + STATE(54), 2, + sym_arg, + aux_sym_args_repeat1, + STATE(74), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [13541] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(141), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_DOLLAR, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(149), 1, + anon_sym_COMMA, + ACTIONS(151), 1, + anon_sym_SQUOTE, ACTIONS(153), 1, - anon_sym_DQUOTE, - ACTIONS(157), 1, - anon_sym_DOLLAR, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(161), 1, - anon_sym_COMMA, - ACTIONS(163), 1, - anon_sym_SQUOTE, - ACTIONS(165), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(167), 1, + ACTIONS(155), 1, anon_sym_BQUOTE, - ACTIONS(1016), 1, + ACTIONS(1018), 1, aux_sym_arg_identifier_token1, - STATE(333), 1, - sym_concatenation, - STATE(477), 1, - sym_args, - STATE(270), 2, - sym_arg, - aux_sym_args_repeat1, - STATE(311), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [13197] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_LPAREN, - ACTIONS(119), 1, - anon_sym_COMMA, - ACTIONS(121), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_BQUOTE, - ACTIONS(1046), 1, - aux_sym_arg_identifier_token1, - STATE(91), 1, - sym_concatenation, - STATE(245), 1, - sym_args, - STATE(56), 2, - sym_arg, - aux_sym_args_repeat1, - STATE(76), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [13243] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_LPAREN, - ACTIONS(119), 1, - anon_sym_COMMA, - ACTIONS(121), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_BQUOTE, - ACTIONS(1046), 1, - aux_sym_arg_identifier_token1, - STATE(91), 1, - sym_concatenation, - STATE(242), 1, - sym_args, - STATE(68), 2, - sym_arg, - aux_sym_args_repeat1, - STATE(76), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [13289] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_LPAREN, - ACTIONS(119), 1, - anon_sym_COMMA, - ACTIONS(121), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_BQUOTE, - ACTIONS(1046), 1, - aux_sym_arg_identifier_token1, - STATE(91), 1, - sym_concatenation, - STATE(242), 1, - sym_args, - STATE(56), 2, - sym_arg, - aux_sym_args_repeat1, - STATE(76), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [13335] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_LPAREN, - ACTIONS(119), 1, - anon_sym_COMMA, - ACTIONS(121), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_BQUOTE, - ACTIONS(1046), 1, - aux_sym_arg_identifier_token1, - STATE(91), 1, - sym_concatenation, - STATE(180), 1, - sym_args, - STATE(68), 2, - sym_arg, - aux_sym_args_repeat1, - STATE(76), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [13381] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(153), 1, - anon_sym_DQUOTE, - ACTIONS(157), 1, - anon_sym_DOLLAR, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(161), 1, - anon_sym_COMMA, - ACTIONS(163), 1, - anon_sym_SQUOTE, - ACTIONS(165), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(167), 1, - anon_sym_BQUOTE, - ACTIONS(1016), 1, - aux_sym_arg_identifier_token1, - STATE(333), 1, - sym_concatenation, - STATE(490), 1, - sym_args, - STATE(270), 2, - sym_arg, - aux_sym_args_repeat1, - STATE(311), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [13427] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_LPAREN, - ACTIONS(119), 1, - anon_sym_COMMA, - ACTIONS(121), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_BQUOTE, - ACTIONS(1046), 1, - aux_sym_arg_identifier_token1, - STATE(91), 1, - sym_concatenation, - STATE(185), 1, - sym_args, - STATE(56), 2, - sym_arg, - aux_sym_args_repeat1, - STATE(76), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [13473] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_LPAREN, - ACTIONS(119), 1, - anon_sym_COMMA, - ACTIONS(121), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_BQUOTE, - ACTIONS(1046), 1, - aux_sym_arg_identifier_token1, - STATE(91), 1, - sym_concatenation, - STATE(192), 1, - sym_args, - STATE(68), 2, - sym_arg, - aux_sym_args_repeat1, - STATE(76), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [13519] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_LPAREN, - ACTIONS(119), 1, - anon_sym_COMMA, - ACTIONS(121), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_BQUOTE, - ACTIONS(1046), 1, - aux_sym_arg_identifier_token1, - STATE(91), 1, - sym_concatenation, - STATE(190), 1, - sym_args, - STATE(68), 2, - sym_arg, - aux_sym_args_repeat1, - STATE(76), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [13565] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_LPAREN, - ACTIONS(119), 1, - anon_sym_COMMA, - ACTIONS(121), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_BQUOTE, - ACTIONS(1046), 1, - aux_sym_arg_identifier_token1, - STATE(91), 1, - sym_concatenation, - STATE(190), 1, - sym_args, - STATE(56), 2, - sym_arg, - aux_sym_args_repeat1, - STATE(76), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [13611] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_LPAREN, - ACTIONS(119), 1, - anon_sym_COMMA, - ACTIONS(121), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_BQUOTE, - ACTIONS(1046), 1, - aux_sym_arg_identifier_token1, - STATE(91), 1, - sym_concatenation, - STATE(180), 1, - sym_args, - STATE(56), 2, - sym_arg, - aux_sym_args_repeat1, - STATE(76), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [13657] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_LPAREN, - ACTIONS(119), 1, - anon_sym_COMMA, - ACTIONS(121), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_BQUOTE, - ACTIONS(1046), 1, - aux_sym_arg_identifier_token1, - STATE(91), 1, - sym_concatenation, - STATE(181), 1, - sym_args, - STATE(68), 2, - sym_arg, - aux_sym_args_repeat1, - STATE(76), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [13703] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_LPAREN, - ACTIONS(119), 1, - anon_sym_COMMA, - ACTIONS(121), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_BQUOTE, - ACTIONS(1046), 1, - aux_sym_arg_identifier_token1, - STATE(91), 1, - sym_concatenation, - STATE(182), 1, - sym_args, - STATE(68), 2, - sym_arg, - aux_sym_args_repeat1, - STATE(76), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [13749] = 13, - ACTIONS(3), 1, - sym__comment, - ACTIONS(153), 1, - anon_sym_DQUOTE, - ACTIONS(157), 1, - anon_sym_DOLLAR, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(161), 1, - anon_sym_COMMA, - ACTIONS(163), 1, - anon_sym_SQUOTE, - ACTIONS(165), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(167), 1, - anon_sym_BQUOTE, - ACTIONS(1016), 1, - aux_sym_arg_identifier_token1, - STATE(333), 1, + STATE(339), 1, sym_concatenation, STATE(492), 1, sym_args, - STATE(270), 2, + STATE(279), 2, sym_arg, aux_sym_args_repeat1, - STATE(311), 6, + STATE(319), 6, sym__arg_with_paren, sym__arg, sym_arg_identifier, sym_double_quoted_arg, sym_single_quoted_arg, sym_cmd_substitution_arg, - [13795] = 12, + [13587] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(111), 1, @@ -25004,78 +25067,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1046), 1, aux_sym_arg_identifier_token1, - STATE(91), 1, - sym_concatenation, - STATE(189), 1, - sym_arg, - STATE(76), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [13837] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_LPAREN, - ACTIONS(119), 1, - anon_sym_COMMA, - ACTIONS(121), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_BQUOTE, - ACTIONS(1046), 1, - aux_sym_arg_identifier_token1, - STATE(91), 1, - sym_concatenation, - STATE(194), 1, - sym_arg, - STATE(76), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [13879] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_LPAREN, - ACTIONS(119), 1, - anon_sym_COMMA, - ACTIONS(121), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_BQUOTE, - ACTIONS(1046), 1, - aux_sym_arg_identifier_token1, - STATE(91), 1, + STATE(87), 1, sym_concatenation, STATE(195), 1, + sym_args, + STATE(54), 2, sym_arg, - STATE(76), 6, + aux_sym_args_repeat1, + STATE(74), 6, sym__arg_with_paren, sym__arg, sym_arg_identifier, sym_double_quoted_arg, sym_single_quoted_arg, sym_cmd_substitution_arg, - [13921] = 12, + [13633] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(111), 1, @@ -25094,18 +25100,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1046), 1, aux_sym_arg_identifier_token1, - STATE(91), 1, + STATE(87), 1, sym_concatenation, - STATE(196), 1, + STATE(203), 1, + sym_args, + STATE(69), 2, sym_arg, - STATE(76), 6, + aux_sym_args_repeat1, + STATE(74), 6, sym__arg_with_paren, sym__arg, sym_arg_identifier, sym_double_quoted_arg, sym_single_quoted_arg, sym_cmd_substitution_arg, - [13963] = 12, + [13679] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(111), 1, @@ -25124,18 +25133,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1046), 1, aux_sym_arg_identifier_token1, - STATE(91), 1, + STATE(87), 1, sym_concatenation, - STATE(186), 1, + STATE(219), 1, + sym_args, + STATE(54), 2, sym_arg, - STATE(76), 6, + aux_sym_args_repeat1, + STATE(74), 6, sym__arg_with_paren, sym__arg, sym_arg_identifier, sym_double_quoted_arg, sym_single_quoted_arg, sym_cmd_substitution_arg, - [14005] = 12, + [13725] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(111), 1, @@ -25154,48 +25166,186 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1046), 1, aux_sym_arg_identifier_token1, - STATE(91), 1, + STATE(87), 1, + sym_concatenation, + STATE(201), 1, + sym_args, + STATE(69), 2, + sym_arg, + aux_sym_args_repeat1, + STATE(74), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [13771] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(119), 1, + anon_sym_COMMA, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_BQUOTE, + ACTIONS(1046), 1, + aux_sym_arg_identifier_token1, + STATE(87), 1, + sym_concatenation, + STATE(195), 1, + sym_args, + STATE(69), 2, + sym_arg, + aux_sym_args_repeat1, + STATE(74), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [13817] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(119), 1, + anon_sym_COMMA, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_BQUOTE, + ACTIONS(1046), 1, + aux_sym_arg_identifier_token1, + STATE(87), 1, + sym_concatenation, + STATE(201), 1, + sym_args, + STATE(54), 2, + sym_arg, + aux_sym_args_repeat1, + STATE(74), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [13863] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(119), 1, + anon_sym_COMMA, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_BQUOTE, + ACTIONS(1046), 1, + aux_sym_arg_identifier_token1, + STATE(87), 1, sym_concatenation, STATE(191), 1, + sym_args, + STATE(69), 2, sym_arg, - STATE(76), 6, + aux_sym_args_repeat1, + STATE(74), 6, sym__arg_with_paren, sym__arg, sym_arg_identifier, sym_double_quoted_arg, sym_single_quoted_arg, sym_cmd_substitution_arg, - [14047] = 12, + [13909] = 13, ACTIONS(3), 1, sym__comment, + ACTIONS(141), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_DOLLAR, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(149), 1, + anon_sym_COMMA, + ACTIONS(151), 1, + anon_sym_SQUOTE, ACTIONS(153), 1, - anon_sym_DQUOTE, - ACTIONS(157), 1, - anon_sym_DOLLAR, - ACTIONS(159), 1, - anon_sym_LPAREN, - ACTIONS(161), 1, - anon_sym_COMMA, - ACTIONS(163), 1, - anon_sym_SQUOTE, - ACTIONS(165), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(167), 1, + ACTIONS(155), 1, anon_sym_BQUOTE, - ACTIONS(1016), 1, + ACTIONS(1018), 1, aux_sym_arg_identifier_token1, - STATE(333), 1, + STATE(339), 1, sym_concatenation, - STATE(385), 1, + STATE(472), 1, + sym_args, + STATE(279), 2, sym_arg, - STATE(311), 6, + aux_sym_args_repeat1, + STATE(319), 6, sym__arg_with_paren, sym__arg, sym_arg_identifier, sym_double_quoted_arg, sym_single_quoted_arg, sym_cmd_substitution_arg, - [14089] = 12, + [13955] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(141), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_DOLLAR, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(149), 1, + anon_sym_COMMA, + ACTIONS(151), 1, + anon_sym_SQUOTE, + ACTIONS(153), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(155), 1, + anon_sym_BQUOTE, + ACTIONS(1018), 1, + aux_sym_arg_identifier_token1, + STATE(339), 1, + sym_concatenation, + STATE(494), 1, + sym_args, + STATE(279), 2, + sym_arg, + aux_sym_args_repeat1, + STATE(319), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [14001] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(111), 1, @@ -25214,18 +25364,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1046), 1, aux_sym_arg_identifier_token1, - STATE(91), 1, + STATE(87), 1, sym_concatenation, - STATE(238), 1, + STATE(192), 1, + sym_args, + STATE(54), 2, sym_arg, - STATE(76), 6, + aux_sym_args_repeat1, + STATE(74), 6, sym__arg_with_paren, sym__arg, sym_arg_identifier, sym_double_quoted_arg, sym_single_quoted_arg, sym_cmd_substitution_arg, - [14131] = 12, + [14047] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(111), 1, @@ -25244,18 +25397,120 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1046), 1, aux_sym_arg_identifier_token1, - STATE(91), 1, + STATE(87), 1, sym_concatenation, - STATE(237), 1, + STATE(191), 1, + sym_args, + STATE(54), 2, sym_arg, - STATE(76), 6, + aux_sym_args_repeat1, + STATE(74), 6, sym__arg_with_paren, sym__arg, sym_arg_identifier, sym_double_quoted_arg, sym_single_quoted_arg, sym_cmd_substitution_arg, - [14173] = 12, + [14093] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(141), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_DOLLAR, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(149), 1, + anon_sym_COMMA, + ACTIONS(151), 1, + anon_sym_SQUOTE, + ACTIONS(153), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(155), 1, + anon_sym_BQUOTE, + ACTIONS(1018), 1, + aux_sym_arg_identifier_token1, + STATE(339), 1, + sym_concatenation, + STATE(489), 1, + sym_args, + STATE(279), 2, + sym_arg, + aux_sym_args_repeat1, + STATE(319), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [14139] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(119), 1, + anon_sym_COMMA, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_BQUOTE, + ACTIONS(1046), 1, + aux_sym_arg_identifier_token1, + STATE(87), 1, + sym_concatenation, + STATE(222), 1, + sym_args, + STATE(69), 2, + sym_arg, + aux_sym_args_repeat1, + STATE(74), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [14185] = 13, + ACTIONS(3), 1, + sym__comment, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(119), 1, + anon_sym_COMMA, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_BQUOTE, + ACTIONS(1046), 1, + aux_sym_arg_identifier_token1, + STATE(87), 1, + sym_concatenation, + STATE(190), 1, + sym_args, + STATE(69), 2, + sym_arg, + aux_sym_args_repeat1, + STATE(74), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [14231] = 14, ACTIONS(3), 1, sym__comment, ACTIONS(1048), 1, @@ -25274,108 +25529,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(1062), 1, anon_sym_BQUOTE, - STATE(160), 1, - sym_arg, - STATE(165), 1, - sym_concatenation, - STATE(119), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [14215] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_LPAREN, - ACTIONS(119), 1, - anon_sym_COMMA, - ACTIONS(121), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_BQUOTE, - ACTIONS(1046), 1, - aux_sym_arg_identifier_token1, - STATE(91), 1, - sym_concatenation, - STATE(193), 1, - sym_arg, - STATE(76), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [14257] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_LPAREN, - ACTIONS(119), 1, - anon_sym_COMMA, - ACTIONS(121), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_BQUOTE, - ACTIONS(1046), 1, - aux_sym_arg_identifier_token1, - STATE(91), 1, - sym_concatenation, - STATE(184), 1, - sym_arg, - STATE(76), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [14299] = 12, - ACTIONS(3), 1, - sym__comment, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_LPAREN, - ACTIONS(119), 1, - anon_sym_COMMA, - ACTIONS(121), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_BQUOTE, - ACTIONS(1046), 1, - aux_sym_arg_identifier_token1, - STATE(91), 1, - sym_concatenation, + STATE(235), 1, + sym__eq_sep_val_concatenation, STATE(236), 1, + sym__eq_sep_val, + STATE(457), 1, sym_arg, - STATE(76), 6, + STATE(460), 1, + sym_concatenation, + STATE(120), 6, sym__arg_with_paren, sym__arg, sym_arg_identifier, sym_double_quoted_arg, sym_single_quoted_arg, sym_cmd_substitution_arg, - [14341] = 12, + [14279] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(111), 1, @@ -25394,18 +25563,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1046), 1, aux_sym_arg_identifier_token1, - STATE(91), 1, + STATE(87), 1, sym_concatenation, - STATE(230), 1, + STATE(222), 1, + sym_args, + STATE(54), 2, sym_arg, - STATE(76), 6, + aux_sym_args_repeat1, + STATE(74), 6, sym__arg_with_paren, sym__arg, sym_arg_identifier, sym_double_quoted_arg, sym_single_quoted_arg, sym_cmd_substitution_arg, - [14383] = 12, + [14325] = 13, ACTIONS(3), 1, sym__comment, ACTIONS(111), 1, @@ -25424,69 +25596,478 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1046), 1, aux_sym_arg_identifier_token1, - STATE(91), 1, + STATE(87), 1, sym_concatenation, - STATE(197), 1, + STATE(190), 1, + sym_args, + STATE(54), 2, sym_arg, - STATE(76), 6, + aux_sym_args_repeat1, + STATE(74), 6, sym__arg_with_paren, sym__arg, sym_arg_identifier, sym_double_quoted_arg, sym_single_quoted_arg, sym_cmd_substitution_arg, - [14425] = 5, + [14371] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(277), 1, - anon_sym_DOLLAR, - ACTIONS(1064), 1, - sym__concat, - STATE(310), 1, - aux_sym_concatenation_repeat1, - ACTIONS(275), 12, - ts_builtin_sym_end, + ACTIONS(111), 1, anon_sym_DQUOTE, - anon_sym_RPAREN, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(119), 1, anon_sym_COMMA, - aux_sym_arg_identifier_token1, + ACTIONS(121), 1, anon_sym_SQUOTE, + ACTIONS(123), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [14452] = 5, + ACTIONS(1046), 1, + aux_sym_arg_identifier_token1, + STATE(87), 1, + sym_concatenation, + STATE(207), 1, + sym_arg, + STATE(74), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [14413] = 12, ACTIONS(3), 1, sym__comment, - ACTIONS(270), 1, - anon_sym_DOLLAR, - ACTIONS(1066), 1, - sym__concat, - STATE(310), 1, - aux_sym_concatenation_repeat1, - ACTIONS(268), 12, - ts_builtin_sym_end, + ACTIONS(111), 1, anon_sym_DQUOTE, - anon_sym_RPAREN, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(119), 1, anon_sym_COMMA, - aux_sym_arg_identifier_token1, + ACTIONS(121), 1, anon_sym_SQUOTE, + ACTIONS(123), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [14479] = 5, + ACTIONS(1046), 1, + aux_sym_arg_identifier_token1, + STATE(87), 1, + sym_concatenation, + STATE(202), 1, + sym_arg, + STATE(74), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [14455] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(119), 1, + anon_sym_COMMA, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_BQUOTE, + ACTIONS(1046), 1, + aux_sym_arg_identifier_token1, + STATE(87), 1, + sym_concatenation, + STATE(208), 1, + sym_arg, + STATE(74), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [14497] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(119), 1, + anon_sym_COMMA, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_BQUOTE, + ACTIONS(1046), 1, + aux_sym_arg_identifier_token1, + STATE(87), 1, + sym_concatenation, + STATE(245), 1, + sym_arg, + STATE(74), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [14539] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(119), 1, + anon_sym_COMMA, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_BQUOTE, + ACTIONS(1046), 1, + aux_sym_arg_identifier_token1, + STATE(87), 1, + sym_concatenation, + STATE(246), 1, + sym_arg, + STATE(74), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [14581] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(119), 1, + anon_sym_COMMA, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_BQUOTE, + ACTIONS(1046), 1, + aux_sym_arg_identifier_token1, + STATE(87), 1, + sym_concatenation, + STATE(247), 1, + sym_arg, + STATE(74), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [14623] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1048), 1, + anon_sym_DQUOTE, + ACTIONS(1050), 1, + anon_sym_DOLLAR, + ACTIONS(1052), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_COMMA, + ACTIONS(1056), 1, + aux_sym_arg_identifier_token1, + ACTIONS(1058), 1, + anon_sym_SQUOTE, + ACTIONS(1060), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1062), 1, + anon_sym_BQUOTE, + STATE(159), 1, + sym_concatenation, + STATE(163), 1, + sym_arg, + STATE(116), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [14665] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(119), 1, + anon_sym_COMMA, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_BQUOTE, + ACTIONS(1046), 1, + aux_sym_arg_identifier_token1, + STATE(87), 1, + sym_concatenation, + STATE(205), 1, + sym_arg, + STATE(74), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [14707] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(119), 1, + anon_sym_COMMA, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_BQUOTE, + ACTIONS(1046), 1, + aux_sym_arg_identifier_token1, + STATE(87), 1, + sym_concatenation, + STATE(181), 1, + sym_arg, + STATE(74), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [14749] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(119), 1, + anon_sym_COMMA, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_BQUOTE, + ACTIONS(1046), 1, + aux_sym_arg_identifier_token1, + STATE(87), 1, + sym_concatenation, + STATE(194), 1, + sym_arg, + STATE(74), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [14791] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(119), 1, + anon_sym_COMMA, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_BQUOTE, + ACTIONS(1046), 1, + aux_sym_arg_identifier_token1, + STATE(87), 1, + sym_concatenation, + STATE(196), 1, + sym_arg, + STATE(74), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [14833] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(119), 1, + anon_sym_COMMA, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_BQUOTE, + ACTIONS(1046), 1, + aux_sym_arg_identifier_token1, + STATE(87), 1, + sym_concatenation, + STATE(204), 1, + sym_arg, + STATE(74), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [14875] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(141), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_DOLLAR, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(149), 1, + anon_sym_COMMA, + ACTIONS(151), 1, + anon_sym_SQUOTE, + ACTIONS(153), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(155), 1, + anon_sym_BQUOTE, + ACTIONS(1018), 1, + aux_sym_arg_identifier_token1, + STATE(339), 1, + sym_concatenation, + STATE(401), 1, + sym_arg, + STATE(319), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [14917] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(119), 1, + anon_sym_COMMA, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_BQUOTE, + ACTIONS(1046), 1, + aux_sym_arg_identifier_token1, + STATE(87), 1, + sym_concatenation, + STATE(200), 1, + sym_arg, + STATE(74), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [14959] = 12, + ACTIONS(3), 1, + sym__comment, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(119), 1, + anon_sym_COMMA, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_BQUOTE, + ACTIONS(1046), 1, + aux_sym_arg_identifier_token1, + STATE(87), 1, + sym_concatenation, + STATE(206), 1, + sym_arg, + STATE(74), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [15001] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(283), 1, anon_sym_DOLLAR, ACTIONS(1064), 1, sym__concat, - STATE(309), 1, + STATE(320), 1, aux_sym_concatenation_repeat1, ACTIONS(281), 12, ts_builtin_sym_end, @@ -25501,77 +26082,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [14506] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(295), 1, - anon_sym_DOLLAR, - ACTIONS(293), 13, - sym__concat, - ts_builtin_sym_end, - anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_arg_identifier_token1, - anon_sym_SQUOTE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [14528] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(311), 1, - anon_sym_DOLLAR, - ACTIONS(309), 13, - sym__concat, - ts_builtin_sym_end, - anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_arg_identifier_token1, - anon_sym_SQUOTE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [14550] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(200), 1, - anon_sym_DQUOTE, - ACTIONS(204), 1, - anon_sym_DOLLAR, - ACTIONS(206), 1, - anon_sym_LPAREN, - ACTIONS(208), 1, - anon_sym_COMMA, - ACTIONS(210), 1, - anon_sym_SQUOTE, - ACTIONS(212), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(214), 1, - anon_sym_BQUOTE, - ACTIONS(1069), 1, - aux_sym_arg_identifier_token1, - STATE(391), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [14586] = 3, + [15028] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(270), 1, anon_sym_DOLLAR, - ACTIONS(268), 13, + ACTIONS(1064), 1, sym__concat, + STATE(318), 1, + aux_sym_concatenation_repeat1, + ACTIONS(268), 12, ts_builtin_sym_end, anon_sym_DQUOTE, anon_sym_RPAREN, @@ -25584,33 +26104,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [14608] = 10, + [15055] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(1048), 1, - anon_sym_DQUOTE, - ACTIONS(1050), 1, + ACTIONS(276), 1, anon_sym_DOLLAR, - ACTIONS(1052), 1, + ACTIONS(1066), 1, + sym__concat, + STATE(320), 1, + aux_sym_concatenation_repeat1, + ACTIONS(274), 12, + ts_builtin_sym_end, + anon_sym_DQUOTE, + anon_sym_RPAREN, anon_sym_LPAREN, - ACTIONS(1054), 1, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(1056), 1, aux_sym_arg_identifier_token1, - ACTIONS(1058), 1, anon_sym_SQUOTE, - ACTIONS(1060), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1062), 1, anon_sym_BQUOTE, - STATE(153), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [14644] = 3, + anon_sym_LF, + anon_sym_CR, + [15082] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(303), 1, @@ -25629,26 +26145,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [14666] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(291), 1, - anon_sym_DOLLAR, - ACTIONS(289), 13, - sym__concat, - ts_builtin_sym_end, - anon_sym_DQUOTE, - anon_sym_RPAREN, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COMMA, - aux_sym_arg_identifier_token1, - anon_sym_SQUOTE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [14688] = 3, + [15104] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(287), 1, @@ -25667,12 +26164,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [14710] = 3, + [15126] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(315), 1, + ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(313), 13, + ACTIONS(301), 13, sym__concat, ts_builtin_sym_end, anon_sym_DQUOTE, @@ -25686,38 +26183,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [14732] = 10, + [15148] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(153), 1, + ACTIONS(204), 1, anon_sym_DQUOTE, - ACTIONS(157), 1, + ACTIONS(208), 1, anon_sym_DOLLAR, - ACTIONS(159), 1, + ACTIONS(210), 1, anon_sym_LPAREN, - ACTIONS(161), 1, + ACTIONS(212), 1, anon_sym_COMMA, - ACTIONS(163), 1, + ACTIONS(214), 1, anon_sym_SQUOTE, - ACTIONS(165), 1, + ACTIONS(216), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(167), 1, + ACTIONS(218), 1, anon_sym_BQUOTE, - ACTIONS(1016), 1, + ACTIONS(1069), 1, aux_sym_arg_identifier_token1, - STATE(315), 6, + STATE(399), 6, sym__arg_with_paren, sym__arg, sym_arg_identifier, sym_double_quoted_arg, sym_single_quoted_arg, sym_cmd_substitution_arg, - [14768] = 3, + [15184] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(299), 1, + ACTIONS(276), 1, anon_sym_DOLLAR, - ACTIONS(297), 13, + ACTIONS(274), 13, sym__concat, ts_builtin_sym_end, anon_sym_DQUOTE, @@ -25731,7 +26228,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [14790] = 10, + [15206] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1048), 1, + anon_sym_DQUOTE, + ACTIONS(1050), 1, + anon_sym_DOLLAR, + ACTIONS(1052), 1, + anon_sym_LPAREN, + ACTIONS(1054), 1, + anon_sym_COMMA, + ACTIONS(1056), 1, + aux_sym_arg_identifier_token1, + ACTIONS(1058), 1, + anon_sym_SQUOTE, + ACTIONS(1060), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1062), 1, + anon_sym_BQUOTE, + STATE(132), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [15242] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(1071), 1, @@ -25750,45 +26273,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(1085), 1, anon_sym_BQUOTE, - STATE(439), 6, + STATE(443), 6, sym__arg_with_paren, sym__arg, sym_arg_identifier, sym_double_quoted_arg, sym_single_quoted_arg, sym_cmd_substitution_arg, - [14826] = 10, + [15278] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, + ACTIONS(299), 1, anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_LPAREN, - ACTIONS(119), 1, - anon_sym_COMMA, - ACTIONS(121), 1, - anon_sym_SQUOTE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_BQUOTE, - ACTIONS(1046), 1, - aux_sym_arg_identifier_token1, - STATE(78), 6, - sym__arg_with_paren, - sym__arg, - sym_arg_identifier, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [14862] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(291), 1, - anon_sym_DOLLAR, - ACTIONS(289), 13, + ACTIONS(297), 13, sym__concat, ts_builtin_sym_end, anon_sym_DQUOTE, @@ -25802,7 +26299,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [14884] = 3, + [15300] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(307), 1, @@ -25821,162 +26318,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [14906] = 10, + [15322] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(224), 1, + ACTIONS(295), 1, anon_sym_DOLLAR, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(228), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(230), 1, - anon_sym_BQUOTE, - ACTIONS(1087), 1, - aux_sym_pf_arg_identifier_token1, - STATE(106), 1, - sym_pf_concatenation, - STATE(206), 1, - sym_pf_args, - STATE(89), 2, - sym_pf_arg, - aux_sym_pf_args_repeat1, - STATE(96), 4, - sym__pf_arg_parentheses, - sym_pf_arg_identifier, - sym__pf_arg, - sym_cmd_substitution_arg, - [14941] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(212), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(214), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, - anon_sym_DOLLAR, - ACTIONS(1091), 1, - anon_sym_LPAREN, - ACTIONS(1093), 1, - aux_sym_pf_arg_identifier_token1, - STATE(392), 1, - sym_pf_concatenation, - STATE(486), 1, - sym_pf_args, - STATE(331), 2, - sym_pf_arg, - aux_sym_pf_args_repeat1, - STATE(366), 4, - sym__pf_arg_parentheses, - sym_pf_arg_identifier, - sym__pf_arg, - sym_cmd_substitution_arg, - [14976] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(234), 1, - anon_sym_RPAREN, - ACTIONS(1095), 1, - anon_sym_DOLLAR, - ACTIONS(1098), 1, - anon_sym_LPAREN, - ACTIONS(1101), 1, - aux_sym_pf_arg_identifier_token1, - ACTIONS(1104), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1107), 1, - anon_sym_BQUOTE, - STATE(392), 1, - sym_pf_concatenation, - STATE(329), 2, - sym_pf_arg, - aux_sym_pf_args_repeat1, - STATE(366), 4, - sym__pf_arg_parentheses, - sym_pf_arg_identifier, - sym__pf_arg, - sym_cmd_substitution_arg, - [15011] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(224), 1, - anon_sym_DOLLAR, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(228), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(230), 1, - anon_sym_BQUOTE, - ACTIONS(1087), 1, - aux_sym_pf_arg_identifier_token1, - STATE(106), 1, - sym_pf_concatenation, - STATE(206), 1, - sym_pf_args, - STATE(72), 2, - sym_pf_arg, - aux_sym_pf_args_repeat1, - STATE(96), 4, - sym__pf_arg_parentheses, - sym_pf_arg_identifier, - sym__pf_arg, - sym_cmd_substitution_arg, - [15046] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(212), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(214), 1, - anon_sym_BQUOTE, - ACTIONS(250), 1, - anon_sym_RPAREN, - ACTIONS(1089), 1, - anon_sym_DOLLAR, - ACTIONS(1091), 1, - anon_sym_LPAREN, - ACTIONS(1093), 1, - aux_sym_pf_arg_identifier_token1, - STATE(392), 1, - sym_pf_concatenation, - STATE(329), 2, - sym_pf_arg, - aux_sym_pf_args_repeat1, - STATE(366), 4, - sym__pf_arg_parentheses, - sym_pf_arg_identifier, - sym__pf_arg, - sym_cmd_substitution_arg, - [15081] = 10, - ACTIONS(3), 1, - sym__comment, - ACTIONS(224), 1, - anon_sym_DOLLAR, - ACTIONS(226), 1, - anon_sym_LPAREN, - ACTIONS(228), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(230), 1, - anon_sym_BQUOTE, - ACTIONS(1087), 1, - aux_sym_pf_arg_identifier_token1, - STATE(106), 1, - sym_pf_concatenation, - STATE(175), 1, - sym_pf_args, - STATE(89), 2, - sym_pf_arg, - aux_sym_pf_args_repeat1, - STATE(96), 4, - sym__pf_arg_parentheses, - sym_pf_arg_identifier, - sym__pf_arg, - sym_cmd_substitution_arg, - [15116] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(283), 1, - anon_sym_DOLLAR, - ACTIONS(281), 12, + ACTIONS(293), 13, + sym__concat, ts_builtin_sym_end, anon_sym_DQUOTE, anon_sym_RPAREN, @@ -25989,7 +26337,116 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LF, anon_sym_CR, - [15137] = 10, + [15344] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(291), 1, + anon_sym_DOLLAR, + ACTIONS(289), 13, + sym__concat, + ts_builtin_sym_end, + anon_sym_DQUOTE, + anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_arg_identifier_token1, + anon_sym_SQUOTE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [15366] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(315), 1, + anon_sym_DOLLAR, + ACTIONS(313), 13, + sym__concat, + ts_builtin_sym_end, + anon_sym_DQUOTE, + anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_arg_identifier_token1, + anon_sym_SQUOTE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [15388] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(309), 13, + sym__concat, + ts_builtin_sym_end, + anon_sym_DQUOTE, + anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_arg_identifier_token1, + anon_sym_SQUOTE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [15410] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(141), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_DOLLAR, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(149), 1, + anon_sym_COMMA, + ACTIONS(151), 1, + anon_sym_SQUOTE, + ACTIONS(153), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(155), 1, + anon_sym_BQUOTE, + ACTIONS(1018), 1, + aux_sym_arg_identifier_token1, + STATE(325), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [15446] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_LPAREN, + ACTIONS(119), 1, + anon_sym_COMMA, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_BQUOTE, + ACTIONS(1046), 1, + aux_sym_arg_identifier_token1, + STATE(84), 6, + sym__arg_with_paren, + sym__arg, + sym_arg_identifier, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [15482] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(224), 1, @@ -26002,36 +26459,104 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1087), 1, aux_sym_pf_arg_identifier_token1, - STATE(106), 1, + STATE(109), 1, sym_pf_concatenation, - STATE(250), 1, + STATE(224), 1, sym_pf_args, - STATE(72), 2, + STATE(89), 2, sym_pf_arg, aux_sym_pf_args_repeat1, - STATE(96), 4, + STATE(99), 4, sym__pf_arg_parentheses, sym_pf_arg_identifier, sym__pf_arg, sym_cmd_substitution_arg, - [15172] = 10, + [15517] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(212), 1, + ACTIONS(224), 1, + anon_sym_DOLLAR, + ACTIONS(226), 1, + anon_sym_LPAREN, + ACTIONS(228), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(214), 1, + ACTIONS(230), 1, anon_sym_BQUOTE, + ACTIONS(1087), 1, + aux_sym_pf_arg_identifier_token1, + STATE(109), 1, + sym_pf_concatenation, + STATE(259), 1, + sym_pf_args, + STATE(72), 2, + sym_pf_arg, + aux_sym_pf_args_repeat1, + STATE(99), 4, + sym__pf_arg_parentheses, + sym_pf_arg_identifier, + sym__pf_arg, + sym_cmd_substitution_arg, + [15552] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(224), 1, + anon_sym_DOLLAR, + ACTIONS(226), 1, + anon_sym_LPAREN, + ACTIONS(228), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(230), 1, + anon_sym_BQUOTE, + ACTIONS(1087), 1, + aux_sym_pf_arg_identifier_token1, + STATE(109), 1, + sym_pf_concatenation, + STATE(258), 1, + sym_pf_args, + STATE(72), 2, + sym_pf_arg, + aux_sym_pf_args_repeat1, + STATE(99), 4, + sym__pf_arg_parentheses, + sym_pf_arg_identifier, + sym__pf_arg, + sym_cmd_substitution_arg, + [15587] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(270), 1, + anon_sym_DOLLAR, + ACTIONS(268), 12, + ts_builtin_sym_end, + anon_sym_DQUOTE, + anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COMMA, + aux_sym_arg_identifier_token1, + anon_sym_SQUOTE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [15608] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(252), 1, + anon_sym_RPAREN, ACTIONS(1089), 1, anon_sym_DOLLAR, - ACTIONS(1091), 1, + ACTIONS(1092), 1, anon_sym_LPAREN, - ACTIONS(1093), 1, + ACTIONS(1095), 1, aux_sym_pf_arg_identifier_token1, - STATE(392), 1, + ACTIONS(1098), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1101), 1, + anon_sym_BQUOTE, + STATE(400), 1, sym_pf_concatenation, - STATE(476), 1, - sym_pf_args, - STATE(331), 2, + STATE(340), 2, sym_pf_arg, aux_sym_pf_args_repeat1, STATE(366), 4, @@ -26039,7 +26564,7 @@ static uint16_t ts_small_parse_table[] = { sym_pf_arg_identifier, sym__pf_arg, sym_cmd_substitution_arg, - [15207] = 10, + [15643] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(224), 1, @@ -26052,19 +26577,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1087), 1, aux_sym_pf_arg_identifier_token1, - STATE(106), 1, + STATE(109), 1, sym_pf_concatenation, - STATE(250), 1, + STATE(258), 1, sym_pf_args, STATE(89), 2, sym_pf_arg, aux_sym_pf_args_repeat1, - STATE(96), 4, + STATE(99), 4, sym__pf_arg_parentheses, sym_pf_arg_identifier, sym__pf_arg, sym_cmd_substitution_arg, - [15242] = 10, + [15678] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(224), 1, @@ -26077,43 +26602,168 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1087), 1, aux_sym_pf_arg_identifier_token1, - STATE(106), 1, + STATE(109), 1, sym_pf_concatenation, - STATE(175), 1, + STATE(224), 1, sym_pf_args, STATE(72), 2, sym_pf_arg, aux_sym_pf_args_repeat1, - STATE(96), 4, + STATE(99), 4, sym__pf_arg_parentheses, sym_pf_arg_identifier, sym__pf_arg, sym_cmd_substitution_arg, - [15277] = 10, + [15713] = 10, ACTIONS(3), 1, sym__comment, - ACTIONS(256), 1, - anon_sym_DQUOTE, - ACTIONS(262), 1, - anon_sym_SQUOTE, - ACTIONS(264), 1, + ACTIONS(216), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(266), 1, + ACTIONS(218), 1, + anon_sym_BQUOTE, + ACTIONS(248), 1, + anon_sym_RPAREN, + ACTIONS(1104), 1, + anon_sym_DOLLAR, + ACTIONS(1106), 1, + anon_sym_LPAREN, + ACTIONS(1108), 1, + aux_sym_pf_arg_identifier_token1, + STATE(400), 1, + sym_pf_concatenation, + STATE(340), 2, + sym_pf_arg, + aux_sym_pf_args_repeat1, + STATE(366), 4, + sym__pf_arg_parentheses, + sym_pf_arg_identifier, + sym__pf_arg, + sym_cmd_substitution_arg, + [15748] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(216), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(218), 1, + anon_sym_BQUOTE, + ACTIONS(1104), 1, + anon_sym_DOLLAR, + ACTIONS(1106), 1, + anon_sym_LPAREN, + ACTIONS(1108), 1, + aux_sym_pf_arg_identifier_token1, + STATE(400), 1, + sym_pf_concatenation, + STATE(483), 1, + sym_pf_args, + STATE(343), 2, + sym_pf_arg, + aux_sym_pf_args_repeat1, + STATE(366), 4, + sym__pf_arg_parentheses, + sym_pf_arg_identifier, + sym__pf_arg, + sym_cmd_substitution_arg, + [15783] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(216), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(218), 1, + anon_sym_BQUOTE, + ACTIONS(1104), 1, + anon_sym_DOLLAR, + ACTIONS(1106), 1, + anon_sym_LPAREN, + ACTIONS(1108), 1, + aux_sym_pf_arg_identifier_token1, + STATE(400), 1, + sym_pf_concatenation, + STATE(493), 1, + sym_pf_args, + STATE(343), 2, + sym_pf_arg, + aux_sym_pf_args_repeat1, + STATE(366), 4, + sym__pf_arg_parentheses, + sym_pf_arg_identifier, + sym__pf_arg, + sym_cmd_substitution_arg, + [15818] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(224), 1, + anon_sym_DOLLAR, + ACTIONS(226), 1, + anon_sym_LPAREN, + ACTIONS(228), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(230), 1, + anon_sym_BQUOTE, + ACTIONS(1087), 1, + aux_sym_pf_arg_identifier_token1, + STATE(109), 1, + sym_pf_concatenation, + STATE(259), 1, + sym_pf_args, + STATE(89), 2, + sym_pf_arg, + aux_sym_pf_args_repeat1, + STATE(99), 4, + sym__pf_arg_parentheses, + sym_pf_arg_identifier, + sym__pf_arg, + sym_cmd_substitution_arg, + [15853] = 10, + ACTIONS(3), 1, + sym__comment, + ACTIONS(236), 1, + anon_sym_DQUOTE, + ACTIONS(242), 1, + anon_sym_SQUOTE, + ACTIONS(244), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(246), 1, anon_sym_BQUOTE, ACTIONS(1110), 1, sym__eq_sep_key_identifier, - STATE(167), 1, - sym__eq_sep_key, - STATE(172), 1, + STATE(158), 1, sym__eq_sep_key_concatenation, - STATE(223), 1, + STATE(166), 1, + sym__eq_sep_key, + STATE(260), 1, sym_eq_sep_args, - STATE(122), 4, + STATE(113), 4, sym__eq_sep_key_single, sym_double_quoted_arg, sym_single_quoted_arg, sym_cmd_substitution_arg, - [15311] = 11, + [15887] = 11, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1112), 1, + aux_sym__pf_dot_arg_identifier_token1, + ACTIONS(1114), 1, + anon_sym_DOLLAR, + ACTIONS(1116), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1118), 1, + anon_sym_BQUOTE, + STATE(71), 1, + sym_pf_dot_arg, + STATE(95), 1, + sym_pf_dot_concatenation, + STATE(251), 1, + sym_pf_dot_cmd_args, + STATE(257), 1, + sym_pf_new_args, + STATE(270), 1, + sym_pf_dot_args, + STATE(90), 3, + sym__pf_dot_arg_identifier, + sym__pf_dot_arg, + sym_cmd_substitution_arg, + [15923] = 11, ACTIONS(3), 1, sym__comment, ACTIONS(1112), 1, @@ -26128,42 +26778,17 @@ static uint16_t ts_small_parse_table[] = { sym_pf_dot_arg, STATE(95), 1, sym_pf_dot_concatenation, - STATE(174), 1, + STATE(211), 1, sym_pf_dot_args, - STATE(207), 1, + STATE(251), 1, + sym_pf_dot_cmd_args, + STATE(257), 1, sym_pf_new_args, - STATE(209), 1, - sym_pf_dot_cmd_args, - STATE(87), 3, + STATE(90), 3, sym__pf_dot_arg_identifier, sym__pf_dot_arg, sym_cmd_substitution_arg, - [15347] = 11, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1112), 1, - aux_sym__pf_dot_arg_identifier_token1, - ACTIONS(1114), 1, - anon_sym_DOLLAR, - ACTIONS(1116), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1118), 1, - anon_sym_BQUOTE, - STATE(70), 1, - sym_pf_dot_arg, - STATE(95), 1, - sym_pf_dot_concatenation, - STATE(207), 1, - sym_pf_new_args, - STATE(209), 1, - sym_pf_dot_cmd_args, - STATE(260), 1, - sym_pf_dot_args, - STATE(87), 3, - sym__pf_dot_arg_identifier, - sym__pf_dot_arg, - sym_cmd_substitution_arg, - [15383] = 10, + [15959] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(1120), 1, @@ -26174,19 +26799,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(1126), 1, anon_sym_BQUOTE, - STATE(116), 1, + STATE(118), 1, sym_pf_dot_arg, - STATE(133), 1, + STATE(136), 1, sym_pf_dot_concatenation, - STATE(174), 1, + STATE(211), 1, sym_pf_dot_args, - STATE(209), 1, + STATE(251), 1, sym_pf_dot_cmd_args, - STATE(120), 3, + STATE(123), 3, sym__pf_dot_arg_identifier, sym__pf_dot_arg, sym_cmd_substitution_arg, - [15416] = 10, + [15992] = 10, ACTIONS(3), 1, sym__comment, ACTIONS(1120), 1, @@ -26197,74 +26822,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(1126), 1, anon_sym_BQUOTE, - STATE(116), 1, + STATE(118), 1, sym_pf_dot_arg, - STATE(133), 1, + STATE(136), 1, sym_pf_dot_concatenation, - STATE(209), 1, + STATE(251), 1, sym_pf_dot_cmd_args, - STATE(260), 1, + STATE(270), 1, sym_pf_dot_args, - STATE(120), 3, + STATE(123), 3, sym__pf_dot_arg_identifier, sym__pf_dot_arg, sym_cmd_substitution_arg, - [15449] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(212), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(214), 1, - anon_sym_BQUOTE, - ACTIONS(1089), 1, - anon_sym_DOLLAR, - ACTIONS(1091), 1, - anon_sym_LPAREN, - ACTIONS(1093), 1, - aux_sym_pf_arg_identifier_token1, - STATE(378), 4, - sym__pf_arg_parentheses, - sym_pf_arg_identifier, - sym__pf_arg, - sym_cmd_substitution_arg, - [15474] = 8, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1120), 1, - aux_sym__pf_dot_arg_identifier_token1, - ACTIONS(1122), 1, - anon_sym_DOLLAR, - ACTIONS(1124), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1126), 1, - anon_sym_BQUOTE, - STATE(133), 1, - sym_pf_dot_concatenation, - STATE(151), 1, - sym_pf_dot_arg, - STATE(120), 3, - sym__pf_dot_arg_identifier, - sym__pf_dot_arg, - sym_cmd_substitution_arg, - [15501] = 7, - ACTIONS(3), 1, - sym__comment, - ACTIONS(256), 1, - anon_sym_DQUOTE, - ACTIONS(262), 1, - anon_sym_SQUOTE, - ACTIONS(264), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(266), 1, - anon_sym_BQUOTE, - ACTIONS(1128), 1, - sym__eq_sep_key_identifier, - STATE(132), 4, - sym__eq_sep_key_single, - sym_double_quoted_arg, - sym_single_quoted_arg, - sym_cmd_substitution_arg, - [15526] = 7, + [16025] = 7, ACTIONS(3), 1, sym__comment, ACTIONS(224), 1, @@ -26277,318 +26847,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, ACTIONS(1087), 1, aux_sym_pf_arg_identifier_token1, - STATE(101), 4, + STATE(104), 4, sym__pf_arg_parentheses, sym_pf_arg_identifier, sym__pf_arg, sym_cmd_substitution_arg, - [15551] = 7, - ACTIONS(376), 1, - sym__comment, - ACTIONS(1130), 1, - anon_sym_DQUOTE, - ACTIONS(1132), 1, - aux_sym_double_quoted_arg_token1, - ACTIONS(1138), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1141), 1, - anon_sym_BQUOTE, - ACTIONS(1135), 2, - aux_sym_double_quoted_arg_token2, - aux_sym_double_quoted_arg_token3, - STATE(347), 2, - sym_cmd_substitution_arg, - aux_sym_double_quoted_arg_repeat1, - [15575] = 7, - ACTIONS(376), 1, - sym__comment, - ACTIONS(1144), 1, - anon_sym_DQUOTE, - ACTIONS(1146), 1, - aux_sym_double_quoted_arg_token1, - ACTIONS(1150), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1152), 1, - anon_sym_BQUOTE, - ACTIONS(1148), 2, - aux_sym_double_quoted_arg_token2, - aux_sym_double_quoted_arg_token3, - STATE(347), 2, - sym_cmd_substitution_arg, - aux_sym_double_quoted_arg_repeat1, - [15599] = 7, - ACTIONS(376), 1, - sym__comment, - ACTIONS(1150), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1152), 1, - anon_sym_BQUOTE, - ACTIONS(1154), 1, - anon_sym_DQUOTE, - ACTIONS(1156), 1, - aux_sym_double_quoted_arg_token1, - ACTIONS(1158), 2, - aux_sym_double_quoted_arg_token2, - aux_sym_double_quoted_arg_token3, - STATE(350), 2, - sym_cmd_substitution_arg, - aux_sym_double_quoted_arg_repeat1, - [15623] = 7, - ACTIONS(376), 1, - sym__comment, - ACTIONS(1146), 1, - aux_sym_double_quoted_arg_token1, - ACTIONS(1150), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1152), 1, - anon_sym_BQUOTE, - ACTIONS(1160), 1, - anon_sym_DQUOTE, - ACTIONS(1148), 2, - aux_sym_double_quoted_arg_token2, - aux_sym_double_quoted_arg_token3, - STATE(347), 2, - sym_cmd_substitution_arg, - aux_sym_double_quoted_arg_repeat1, - [15647] = 7, - ACTIONS(376), 1, - sym__comment, - ACTIONS(1150), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1152), 1, - anon_sym_BQUOTE, - ACTIONS(1162), 1, - anon_sym_DQUOTE, - ACTIONS(1164), 1, - aux_sym_double_quoted_arg_token1, - ACTIONS(1166), 2, - aux_sym_double_quoted_arg_token2, - aux_sym_double_quoted_arg_token3, - STATE(352), 2, - sym_cmd_substitution_arg, - aux_sym_double_quoted_arg_repeat1, - [15671] = 7, - ACTIONS(376), 1, - sym__comment, - ACTIONS(1146), 1, - aux_sym_double_quoted_arg_token1, - ACTIONS(1150), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1152), 1, - anon_sym_BQUOTE, - ACTIONS(1168), 1, - anon_sym_DQUOTE, - ACTIONS(1148), 2, - aux_sym_double_quoted_arg_token2, - aux_sym_double_quoted_arg_token3, - STATE(347), 2, - sym_cmd_substitution_arg, - aux_sym_double_quoted_arg_repeat1, - [15695] = 5, + [16050] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(346), 1, + ACTIONS(216), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(218), 1, + anon_sym_BQUOTE, + ACTIONS(1104), 1, anon_sym_DOLLAR, - ACTIONS(1170), 1, - sym__concat, - STATE(353), 1, - aux_sym_pf_concatenation_repeat1, - ACTIONS(344), 5, - anon_sym_RPAREN, + ACTIONS(1106), 1, anon_sym_LPAREN, + ACTIONS(1108), 1, aux_sym_pf_arg_identifier_token1, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [15715] = 3, + STATE(384), 4, + sym__pf_arg_parentheses, + sym_pf_arg_identifier, + sym__pf_arg, + sym_cmd_substitution_arg, + [16075] = 7, ACTIONS(3), 1, sym__comment, - ACTIONS(1175), 1, - anon_sym_DOLLAR, - ACTIONS(1173), 7, + ACTIONS(236), 1, anon_sym_DQUOTE, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_arg_identifier_token1, + ACTIONS(242), 1, anon_sym_SQUOTE, + ACTIONS(244), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(246), 1, anon_sym_BQUOTE, - [15731] = 3, + ACTIONS(1128), 1, + sym__eq_sep_key_identifier, + STATE(141), 4, + sym__eq_sep_key_single, + sym_double_quoted_arg, + sym_single_quoted_arg, + sym_cmd_substitution_arg, + [16100] = 8, ACTIONS(3), 1, sym__comment, - ACTIONS(1179), 1, + ACTIONS(1120), 1, + aux_sym__pf_dot_arg_identifier_token1, + ACTIONS(1122), 1, anon_sym_DOLLAR, - ACTIONS(1177), 7, - anon_sym_DQUOTE, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_arg_identifier_token1, - anon_sym_SQUOTE, + ACTIONS(1124), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1126), 1, anon_sym_BQUOTE, - [15747] = 7, - ACTIONS(376), 1, - sym__comment, - ACTIONS(1150), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1152), 1, - anon_sym_BQUOTE, - ACTIONS(1181), 1, - anon_sym_DQUOTE, - ACTIONS(1183), 1, - aux_sym_double_quoted_arg_token1, - ACTIONS(1185), 2, - aux_sym_double_quoted_arg_token2, - aux_sym_double_quoted_arg_token3, - STATE(364), 2, + STATE(136), 1, + sym_pf_dot_concatenation, + STATE(147), 1, + sym_pf_dot_arg, + STATE(123), 3, + sym__pf_dot_arg_identifier, + sym__pf_dot_arg, sym_cmd_substitution_arg, - aux_sym_double_quoted_arg_repeat1, - [15771] = 7, - ACTIONS(376), 1, - sym__comment, - ACTIONS(1150), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1152), 1, - anon_sym_BQUOTE, - ACTIONS(1187), 1, - anon_sym_DQUOTE, - ACTIONS(1189), 1, - aux_sym_double_quoted_arg_token1, - ACTIONS(1191), 2, - aux_sym_double_quoted_arg_token2, - aux_sym_double_quoted_arg_token3, - STATE(359), 2, - sym_cmd_substitution_arg, - aux_sym_double_quoted_arg_repeat1, - [15795] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1195), 1, - anon_sym_DOLLAR, - ACTIONS(1193), 7, - anon_sym_DQUOTE, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_arg_identifier_token1, - anon_sym_SQUOTE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [15811] = 7, - ACTIONS(376), 1, - sym__comment, - ACTIONS(1146), 1, - aux_sym_double_quoted_arg_token1, - ACTIONS(1150), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1152), 1, - anon_sym_BQUOTE, - ACTIONS(1197), 1, - anon_sym_DQUOTE, - ACTIONS(1148), 2, - aux_sym_double_quoted_arg_token2, - aux_sym_double_quoted_arg_token3, - STATE(347), 2, - sym_cmd_substitution_arg, - aux_sym_double_quoted_arg_repeat1, - [15835] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1201), 1, - anon_sym_DOLLAR, - ACTIONS(1199), 7, - anon_sym_DQUOTE, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_arg_identifier_token1, - anon_sym_SQUOTE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [15851] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1205), 1, - anon_sym_DOLLAR, - ACTIONS(1203), 7, - anon_sym_DQUOTE, - anon_sym_LPAREN, - anon_sym_COMMA, - aux_sym_arg_identifier_token1, - anon_sym_SQUOTE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [15867] = 7, - ACTIONS(376), 1, - sym__comment, - ACTIONS(1150), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1152), 1, - anon_sym_BQUOTE, - ACTIONS(1207), 1, - anon_sym_DQUOTE, - ACTIONS(1209), 1, - aux_sym_double_quoted_arg_token1, - ACTIONS(1211), 2, - aux_sym_double_quoted_arg_token2, - aux_sym_double_quoted_arg_token3, - STATE(348), 2, - sym_cmd_substitution_arg, - aux_sym_double_quoted_arg_repeat1, - [15891] = 7, - ACTIONS(376), 1, - sym__comment, - ACTIONS(1150), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1152), 1, - anon_sym_BQUOTE, - ACTIONS(1213), 1, - anon_sym_DQUOTE, - ACTIONS(1215), 1, - aux_sym_double_quoted_arg_token1, - ACTIONS(1217), 2, - aux_sym_double_quoted_arg_token2, - aux_sym_double_quoted_arg_token3, - STATE(367), 2, - sym_cmd_substitution_arg, - aux_sym_double_quoted_arg_repeat1, - [15915] = 7, - ACTIONS(376), 1, - sym__comment, - ACTIONS(1146), 1, - aux_sym_double_quoted_arg_token1, - ACTIONS(1150), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1152), 1, - anon_sym_BQUOTE, - ACTIONS(1219), 1, - anon_sym_DQUOTE, - ACTIONS(1148), 2, - aux_sym_double_quoted_arg_token2, - aux_sym_double_quoted_arg_token3, - STATE(347), 2, - sym_cmd_substitution_arg, - aux_sym_double_quoted_arg_repeat1, - [15939] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(336), 1, - anon_sym_DOLLAR, - ACTIONS(1221), 1, - sym__concat, - STATE(353), 1, - aux_sym_pf_concatenation_repeat1, - ACTIONS(334), 5, - anon_sym_RPAREN, - anon_sym_LPAREN, - aux_sym_pf_arg_identifier_token1, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [15959] = 5, + [16127] = 5, ACTIONS(3), 1, sym__comment, ACTIONS(342), 1, anon_sym_DOLLAR, - ACTIONS(1221), 1, + ACTIONS(1130), 1, sym__concat, - STATE(365), 1, + STATE(356), 1, aux_sym_pf_concatenation_repeat1, ACTIONS(340), 5, anon_sym_RPAREN, @@ -26596,24 +26922,323 @@ static uint16_t ts_small_parse_table[] = { aux_sym_pf_arg_identifier_token1, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [15979] = 7, - ACTIONS(376), 1, + [16147] = 7, + ACTIONS(380), 1, sym__comment, - ACTIONS(1146), 1, - aux_sym_double_quoted_arg_token1, - ACTIONS(1150), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1152), 1, - anon_sym_BQUOTE, - ACTIONS(1223), 1, + ACTIONS(1133), 1, anon_sym_DQUOTE, - ACTIONS(1148), 2, + ACTIONS(1135), 1, + aux_sym_double_quoted_arg_token1, + ACTIONS(1139), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1141), 1, + anon_sym_BQUOTE, + ACTIONS(1137), 2, aux_sym_double_quoted_arg_token2, aux_sym_double_quoted_arg_token3, - STATE(347), 2, + STATE(376), 2, sym_cmd_substitution_arg, aux_sym_double_quoted_arg_repeat1, - [16003] = 3, + [16171] = 7, + ACTIONS(380), 1, + sym__comment, + ACTIONS(1139), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1141), 1, + anon_sym_BQUOTE, + ACTIONS(1143), 1, + anon_sym_DQUOTE, + ACTIONS(1145), 1, + aux_sym_double_quoted_arg_token1, + ACTIONS(1147), 2, + aux_sym_double_quoted_arg_token2, + aux_sym_double_quoted_arg_token3, + STATE(360), 2, + sym_cmd_substitution_arg, + aux_sym_double_quoted_arg_repeat1, + [16195] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1151), 1, + anon_sym_DOLLAR, + ACTIONS(1149), 7, + anon_sym_DQUOTE, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_arg_identifier_token1, + anon_sym_SQUOTE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [16211] = 7, + ACTIONS(380), 1, + sym__comment, + ACTIONS(1135), 1, + aux_sym_double_quoted_arg_token1, + ACTIONS(1139), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1141), 1, + anon_sym_BQUOTE, + ACTIONS(1153), 1, + anon_sym_DQUOTE, + ACTIONS(1137), 2, + aux_sym_double_quoted_arg_token2, + aux_sym_double_quoted_arg_token3, + STATE(376), 2, + sym_cmd_substitution_arg, + aux_sym_double_quoted_arg_repeat1, + [16235] = 7, + ACTIONS(380), 1, + sym__comment, + ACTIONS(1139), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1141), 1, + anon_sym_BQUOTE, + ACTIONS(1155), 1, + anon_sym_DQUOTE, + ACTIONS(1157), 1, + aux_sym_double_quoted_arg_token1, + ACTIONS(1159), 2, + aux_sym_double_quoted_arg_token2, + aux_sym_double_quoted_arg_token3, + STATE(363), 2, + sym_cmd_substitution_arg, + aux_sym_double_quoted_arg_repeat1, + [16259] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1163), 1, + anon_sym_DOLLAR, + ACTIONS(1161), 7, + anon_sym_DQUOTE, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_arg_identifier_token1, + anon_sym_SQUOTE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [16275] = 7, + ACTIONS(380), 1, + sym__comment, + ACTIONS(1135), 1, + aux_sym_double_quoted_arg_token1, + ACTIONS(1139), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1141), 1, + anon_sym_BQUOTE, + ACTIONS(1165), 1, + anon_sym_DQUOTE, + ACTIONS(1137), 2, + aux_sym_double_quoted_arg_token2, + aux_sym_double_quoted_arg_token3, + STATE(376), 2, + sym_cmd_substitution_arg, + aux_sym_double_quoted_arg_repeat1, + [16299] = 7, + ACTIONS(380), 1, + sym__comment, + ACTIONS(1139), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1141), 1, + anon_sym_BQUOTE, + ACTIONS(1167), 1, + anon_sym_DQUOTE, + ACTIONS(1169), 1, + aux_sym_double_quoted_arg_token1, + ACTIONS(1171), 2, + aux_sym_double_quoted_arg_token2, + aux_sym_double_quoted_arg_token3, + STATE(357), 2, + sym_cmd_substitution_arg, + aux_sym_double_quoted_arg_repeat1, + [16323] = 7, + ACTIONS(380), 1, + sym__comment, + ACTIONS(1139), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1141), 1, + anon_sym_BQUOTE, + ACTIONS(1173), 1, + anon_sym_DQUOTE, + ACTIONS(1175), 1, + aux_sym_double_quoted_arg_token1, + ACTIONS(1177), 2, + aux_sym_double_quoted_arg_token2, + aux_sym_double_quoted_arg_token3, + STATE(374), 2, + sym_cmd_substitution_arg, + aux_sym_double_quoted_arg_repeat1, + [16347] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(349), 1, + anon_sym_DOLLAR, + ACTIONS(1179), 1, + sym__concat, + STATE(370), 1, + aux_sym_pf_concatenation_repeat1, + ACTIONS(347), 5, + anon_sym_RPAREN, + anon_sym_LPAREN, + aux_sym_pf_arg_identifier_token1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [16367] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1183), 1, + anon_sym_DOLLAR, + ACTIONS(1181), 7, + anon_sym_DQUOTE, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_arg_identifier_token1, + anon_sym_SQUOTE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [16383] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1187), 1, + anon_sym_DOLLAR, + ACTIONS(1185), 7, + anon_sym_DQUOTE, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_arg_identifier_token1, + anon_sym_SQUOTE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [16399] = 7, + ACTIONS(380), 1, + sym__comment, + ACTIONS(1135), 1, + aux_sym_double_quoted_arg_token1, + ACTIONS(1139), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1141), 1, + anon_sym_BQUOTE, + ACTIONS(1189), 1, + anon_sym_DQUOTE, + ACTIONS(1137), 2, + aux_sym_double_quoted_arg_token2, + aux_sym_double_quoted_arg_token3, + STATE(376), 2, + sym_cmd_substitution_arg, + aux_sym_double_quoted_arg_repeat1, + [16423] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(336), 1, + anon_sym_DOLLAR, + ACTIONS(1179), 1, + sym__concat, + STATE(356), 1, + aux_sym_pf_concatenation_repeat1, + ACTIONS(334), 5, + anon_sym_RPAREN, + anon_sym_LPAREN, + aux_sym_pf_arg_identifier_token1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [16443] = 7, + ACTIONS(380), 1, + sym__comment, + ACTIONS(1139), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1141), 1, + anon_sym_BQUOTE, + ACTIONS(1191), 1, + anon_sym_DQUOTE, + ACTIONS(1193), 1, + aux_sym_double_quoted_arg_token1, + ACTIONS(1195), 2, + aux_sym_double_quoted_arg_token2, + aux_sym_double_quoted_arg_token3, + STATE(369), 2, + sym_cmd_substitution_arg, + aux_sym_double_quoted_arg_repeat1, + [16467] = 7, + ACTIONS(380), 1, + sym__comment, + ACTIONS(1135), 1, + aux_sym_double_quoted_arg_token1, + ACTIONS(1139), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1141), 1, + anon_sym_BQUOTE, + ACTIONS(1197), 1, + anon_sym_DQUOTE, + ACTIONS(1137), 2, + aux_sym_double_quoted_arg_token2, + aux_sym_double_quoted_arg_token3, + STATE(376), 2, + sym_cmd_substitution_arg, + aux_sym_double_quoted_arg_repeat1, + [16491] = 7, + ACTIONS(380), 1, + sym__comment, + ACTIONS(1139), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1141), 1, + anon_sym_BQUOTE, + ACTIONS(1199), 1, + anon_sym_DQUOTE, + ACTIONS(1201), 1, + aux_sym_double_quoted_arg_token1, + ACTIONS(1203), 2, + aux_sym_double_quoted_arg_token2, + aux_sym_double_quoted_arg_token3, + STATE(372), 2, + sym_cmd_substitution_arg, + aux_sym_double_quoted_arg_repeat1, + [16515] = 7, + ACTIONS(380), 1, + sym__comment, + ACTIONS(1135), 1, + aux_sym_double_quoted_arg_token1, + ACTIONS(1139), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1141), 1, + anon_sym_BQUOTE, + ACTIONS(1205), 1, + anon_sym_DQUOTE, + ACTIONS(1137), 2, + aux_sym_double_quoted_arg_token2, + aux_sym_double_quoted_arg_token3, + STATE(376), 2, + sym_cmd_substitution_arg, + aux_sym_double_quoted_arg_repeat1, + [16539] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1209), 1, + anon_sym_DOLLAR, + ACTIONS(1207), 7, + anon_sym_DQUOTE, + anon_sym_LPAREN, + anon_sym_COMMA, + aux_sym_arg_identifier_token1, + anon_sym_SQUOTE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [16555] = 7, + ACTIONS(380), 1, + sym__comment, + ACTIONS(1211), 1, + anon_sym_DQUOTE, + ACTIONS(1213), 1, + aux_sym_double_quoted_arg_token1, + ACTIONS(1219), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1222), 1, + anon_sym_BQUOTE, + ACTIONS(1216), 2, + aux_sym_double_quoted_arg_token2, + aux_sym_double_quoted_arg_token3, + STATE(376), 2, + sym_cmd_substitution_arg, + aux_sym_double_quoted_arg_repeat1, + [16579] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(361), 1, @@ -26625,35 +27250,21 @@ static uint16_t ts_small_parse_table[] = { aux_sym_pf_arg_identifier_token1, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [16018] = 7, - ACTIONS(376), 1, - sym__comment, - ACTIONS(453), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(455), 1, - anon_sym_BQUOTE, - ACTIONS(1225), 1, - sym_grep_specifier_identifier, - ACTIONS(1227), 1, - aux_sym_grep_specifier_token1, - STATE(243), 1, - sym_grep_specifier, - STATE(166), 2, - sym_cmd_substitution_arg, - aux_sym_grep_specifier_repeat1, - [16041] = 3, + [16594] = 5, ACTIONS(3), 1, sym__comment, - ACTIONS(357), 1, + ACTIONS(283), 1, anon_sym_DOLLAR, - ACTIONS(355), 6, + ACTIONS(1225), 1, sym__concat, - anon_sym_RPAREN, + STATE(385), 1, + aux_sym_concatenation_repeat1, + ACTIONS(281), 4, anon_sym_LPAREN, aux_sym_pf_arg_identifier_token1, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [16056] = 6, + [16613] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(1120), 1, @@ -26664,41 +27275,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, ACTIONS(1126), 1, anon_sym_BQUOTE, - STATE(127), 3, + STATE(153), 3, sym__pf_dot_arg_identifier, sym__pf_dot_arg, sym_cmd_substitution_arg, - [16077] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(270), 1, - anon_sym_DOLLAR, - ACTIONS(1229), 1, - sym__concat, - STATE(372), 1, - aux_sym_concatenation_repeat1, - ACTIONS(268), 4, - anon_sym_LPAREN, - aux_sym_pf_arg_identifier_token1, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [16096] = 7, - ACTIONS(376), 1, - sym__comment, - ACTIONS(386), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(388), 1, - anon_sym_BQUOTE, - ACTIONS(1227), 1, - aux_sym_grep_specifier_token1, - ACTIONS(1232), 1, - sym_grep_specifier_identifier, - STATE(243), 1, - sym_grep_specifier, - STATE(108), 2, - sym_cmd_substitution_arg, - aux_sym_grep_specifier_repeat1, - [16119] = 6, + [16634] = 6, ACTIONS(3), 1, sym__comment, ACTIONS(1112), 1, @@ -26713,141 +27294,131 @@ static uint16_t ts_small_parse_table[] = { sym__pf_dot_arg_identifier, sym__pf_dot_arg, sym_cmd_substitution_arg, - [16140] = 3, - ACTIONS(3), 1, + [16655] = 7, + ACTIONS(380), 1, sym__comment, - ACTIONS(291), 1, - anon_sym_DOLLAR, - ACTIONS(289), 6, - sym__concat, - anon_sym_RPAREN, - anon_sym_LPAREN, - aux_sym_pf_arg_identifier_token1, + ACTIONS(465), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [16155] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(291), 1, - anon_sym_DOLLAR, - ACTIONS(289), 6, - sym__concat, - anon_sym_RPAREN, - anon_sym_LPAREN, - aux_sym_pf_arg_identifier_token1, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [16170] = 7, - ACTIONS(376), 1, - sym__comment, - ACTIONS(453), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(455), 1, + ACTIONS(467), 1, anon_sym_BQUOTE, ACTIONS(1227), 1, - aux_sym_grep_specifier_token1, - ACTIONS(1234), 1, sym_grep_specifier_identifier, - STATE(243), 1, + ACTIONS(1229), 1, + aux_sym_grep_specifier_token1, + STATE(178), 1, sym_grep_specifier, - STATE(129), 2, + STATE(137), 2, sym_cmd_substitution_arg, aux_sym_grep_specifier_repeat1, - [16193] = 3, + [16678] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(346), 1, + ACTIONS(357), 1, anon_sym_DOLLAR, - ACTIONS(344), 6, + ACTIONS(355), 6, sym__concat, anon_sym_RPAREN, anon_sym_LPAREN, aux_sym_pf_arg_identifier_token1, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [16208] = 5, + [16693] = 7, + ACTIONS(380), 1, + sym__comment, + ACTIONS(390), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(392), 1, + anon_sym_BQUOTE, + ACTIONS(1229), 1, + aux_sym_grep_specifier_token1, + ACTIONS(1231), 1, + sym_grep_specifier_identifier, + STATE(178), 1, + sym_grep_specifier, + STATE(108), 2, + sym_cmd_substitution_arg, + aux_sym_grep_specifier_repeat1, + [16716] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(283), 1, + ACTIONS(342), 1, anon_sym_DOLLAR, - ACTIONS(1236), 1, + ACTIONS(340), 6, sym__concat, - STATE(380), 1, - aux_sym_concatenation_repeat1, - ACTIONS(281), 4, - anon_sym_LPAREN, - aux_sym_pf_arg_identifier_token1, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [16227] = 5, - ACTIONS(3), 1, - sym__comment, - ACTIONS(277), 1, - anon_sym_DOLLAR, - ACTIONS(1236), 1, - sym__concat, - STATE(372), 1, - aux_sym_concatenation_repeat1, - ACTIONS(275), 4, - anon_sym_LPAREN, - aux_sym_pf_arg_identifier_token1, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [16246] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(315), 1, - anon_sym_DOLLAR, - ACTIONS(313), 5, - sym__concat, - anon_sym_LPAREN, - aux_sym_pf_arg_identifier_token1, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [16260] = 3, - ACTIONS(289), 1, - aux_sym_double_quoted_arg_token1, - ACTIONS(376), 1, - sym__comment, - ACTIONS(291), 5, - anon_sym_DQUOTE, - aux_sym_double_quoted_arg_token2, - aux_sym_double_quoted_arg_token3, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [16274] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(287), 1, - anon_sym_DOLLAR, - ACTIONS(285), 5, - sym__concat, - anon_sym_LPAREN, - aux_sym_pf_arg_identifier_token1, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [16288] = 3, - ACTIONS(289), 1, - aux_sym_double_quoted_arg_token1, - ACTIONS(376), 1, - sym__comment, - ACTIONS(291), 5, - anon_sym_DQUOTE, - aux_sym_double_quoted_arg_token2, - aux_sym_double_quoted_arg_token3, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [16302] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1238), 6, - ts_builtin_sym_end, anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_LPAREN, + aux_sym_pf_arg_identifier_token1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LF, - anon_sym_CR, - [16314] = 3, + [16731] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(276), 1, + anon_sym_DOLLAR, + ACTIONS(1233), 1, + sym__concat, + STATE(385), 1, + aux_sym_concatenation_repeat1, + ACTIONS(274), 4, + anon_sym_LPAREN, + aux_sym_pf_arg_identifier_token1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [16750] = 7, + ACTIONS(380), 1, + sym__comment, + ACTIONS(465), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(467), 1, + anon_sym_BQUOTE, + ACTIONS(1229), 1, + aux_sym_grep_specifier_token1, + ACTIONS(1236), 1, + sym_grep_specifier_identifier, + STATE(178), 1, + sym_grep_specifier, + STATE(167), 2, + sym_cmd_substitution_arg, + aux_sym_grep_specifier_repeat1, + [16773] = 5, + ACTIONS(3), 1, + sym__comment, + ACTIONS(270), 1, + anon_sym_DOLLAR, + ACTIONS(1225), 1, + sym__concat, + STATE(378), 1, + aux_sym_concatenation_repeat1, + ACTIONS(268), 4, + anon_sym_LPAREN, + aux_sym_pf_arg_identifier_token1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [16792] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(303), 1, + anon_sym_DOLLAR, + ACTIONS(301), 6, + sym__concat, + anon_sym_RPAREN, + anon_sym_LPAREN, + aux_sym_pf_arg_identifier_token1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [16807] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(303), 1, + anon_sym_DOLLAR, + ACTIONS(301), 6, + sym__concat, + anon_sym_RPAREN, + anon_sym_LPAREN, + aux_sym_pf_arg_identifier_token1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [16822] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(299), 1, @@ -26858,40 +27429,18 @@ static uint16_t ts_small_parse_table[] = { aux_sym_pf_arg_identifier_token1, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [16328] = 3, - ACTIONS(3), 1, + [16836] = 3, + ACTIONS(301), 1, + aux_sym_double_quoted_arg_token1, + ACTIONS(380), 1, sym__comment, - ACTIONS(303), 1, - anon_sym_DOLLAR, - ACTIONS(301), 5, - sym__concat, - anon_sym_LPAREN, - aux_sym_pf_arg_identifier_token1, + ACTIONS(303), 5, + anon_sym_DQUOTE, + aux_sym_double_quoted_arg_token2, + aux_sym_double_quoted_arg_token3, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [16342] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(311), 1, - anon_sym_DOLLAR, - ACTIONS(309), 5, - sym__concat, - anon_sym_LPAREN, - aux_sym_pf_arg_identifier_token1, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [16356] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(307), 1, - anon_sym_DOLLAR, - ACTIONS(305), 5, - sym__concat, - anon_sym_LPAREN, - aux_sym_pf_arg_identifier_token1, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [16370] = 3, + [16850] = 3, ACTIONS(3), 1, sym__comment, ACTIONS(295), 1, @@ -26902,95 +27451,171 @@ static uint16_t ts_small_parse_table[] = { aux_sym_pf_arg_identifier_token1, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [16384] = 3, + [16864] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(270), 1, + ACTIONS(291), 1, anon_sym_DOLLAR, - ACTIONS(268), 5, + ACTIONS(289), 5, sym__concat, anon_sym_LPAREN, aux_sym_pf_arg_identifier_token1, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [16398] = 3, + [16878] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(342), 1, + ACTIONS(315), 1, anon_sym_DOLLAR, - ACTIONS(340), 5, + ACTIONS(313), 5, + sym__concat, + anon_sym_LPAREN, + aux_sym_pf_arg_identifier_token1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [16892] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(309), 5, + sym__concat, + anon_sym_LPAREN, + aux_sym_pf_arg_identifier_token1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [16906] = 3, + ACTIONS(301), 1, + aux_sym_double_quoted_arg_token1, + ACTIONS(380), 1, + sym__comment, + ACTIONS(303), 5, + anon_sym_DQUOTE, + aux_sym_double_quoted_arg_token2, + aux_sym_double_quoted_arg_token3, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [16920] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(287), 1, + anon_sym_DOLLAR, + ACTIONS(285), 5, + sym__concat, + anon_sym_LPAREN, + aux_sym_pf_arg_identifier_token1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [16934] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(307), 1, + anon_sym_DOLLAR, + ACTIONS(305), 5, + sym__concat, + anon_sym_LPAREN, + aux_sym_pf_arg_identifier_token1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [16948] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(276), 1, + anon_sym_DOLLAR, + ACTIONS(274), 5, + sym__concat, + anon_sym_LPAREN, + aux_sym_pf_arg_identifier_token1, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [16962] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(349), 1, + anon_sym_DOLLAR, + ACTIONS(347), 5, anon_sym_RPAREN, anon_sym_LPAREN, aux_sym_pf_arg_identifier_token1, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [16412] = 4, + [16976] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1238), 6, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + anon_sym_LF, + anon_sym_CR, + [16988] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(1240), 1, ts_builtin_sym_end, - STATE(393), 1, + STATE(404), 1, aux_sym_commands_repeat2, ACTIONS(1242), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR, - [16427] = 3, + [17003] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(283), 1, + ACTIONS(1244), 1, + ts_builtin_sym_end, + STATE(403), 1, + aux_sym_commands_repeat2, + ACTIONS(1246), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR, + [17018] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1249), 1, + ts_builtin_sym_end, + STATE(403), 1, + aux_sym_commands_repeat2, + ACTIONS(1242), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR, + [17033] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(270), 1, anon_sym_DOLLAR, - ACTIONS(281), 4, + ACTIONS(268), 4, anon_sym_LPAREN, aux_sym_pf_arg_identifier_token1, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [16440] = 4, + [17046] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1240), 1, + ts_builtin_sym_end, + STATE(403), 1, + aux_sym_commands_repeat2, + ACTIONS(1242), 3, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR, + [17061] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(91), 1, ts_builtin_sym_end, - STATE(398), 1, + STATE(406), 1, aux_sym_commands_repeat2, - ACTIONS(1245), 3, + ACTIONS(1242), 3, anon_sym_SEMI, anon_sym_LF, anon_sym_CR, - [16455] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1247), 1, - ts_builtin_sym_end, - STATE(393), 1, - aux_sym_commands_repeat2, - ACTIONS(1245), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR, - [16470] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1249), 1, - ts_builtin_sym_end, - STATE(396), 1, - aux_sym_commands_repeat2, - ACTIONS(1245), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR, - [16485] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1249), 1, - ts_builtin_sym_end, - STATE(393), 1, - aux_sym_commands_repeat2, - ACTIONS(1245), 3, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR, - [16500] = 5, - ACTIONS(376), 1, + [17076] = 5, + ACTIONS(380), 1, sym__comment, ACTIONS(1251), 1, anon_sym_SQUOTE, @@ -26998,10 +27623,10 @@ static uint16_t ts_small_parse_table[] = { aux_sym_single_quoted_arg_token1, ACTIONS(1255), 1, aux_sym_single_quoted_arg_token2, - STATE(409), 1, + STATE(418), 1, aux_sym_single_quoted_arg_repeat1, - [16516] = 5, - ACTIONS(376), 1, + [17092] = 5, + ACTIONS(380), 1, sym__comment, ACTIONS(1257), 1, anon_sym_SQUOTE, @@ -27009,117 +27634,109 @@ static uint16_t ts_small_parse_table[] = { aux_sym_single_quoted_arg_token1, ACTIONS(1261), 1, aux_sym_single_quoted_arg_token2, - STATE(413), 1, + STATE(412), 1, aux_sym_single_quoted_arg_repeat1, - [16532] = 5, - ACTIONS(376), 1, + [17108] = 5, + ACTIONS(380), 1, sym__comment, - ACTIONS(1253), 1, - aux_sym_single_quoted_arg_token1, - ACTIONS(1255), 1, - aux_sym_single_quoted_arg_token2, ACTIONS(1263), 1, anon_sym_SQUOTE, + ACTIONS(1265), 1, + aux_sym_single_quoted_arg_token1, + ACTIONS(1267), 1, + aux_sym_single_quoted_arg_token2, STATE(409), 1, aux_sym_single_quoted_arg_repeat1, - [16548] = 5, - ACTIONS(376), 1, + [17124] = 5, + ACTIONS(380), 1, sym__comment, - ACTIONS(1265), 1, - anon_sym_SQUOTE, - ACTIONS(1267), 1, - aux_sym_single_quoted_arg_token1, ACTIONS(1269), 1, - aux_sym_single_quoted_arg_token2, - STATE(401), 1, - aux_sym_single_quoted_arg_repeat1, - [16564] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1240), 4, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_LF, - anon_sym_CR, - [16574] = 5, - ACTIONS(376), 1, - sym__comment, + anon_sym_SQUOTE, ACTIONS(1271), 1, - anon_sym_SQUOTE, + aux_sym_single_quoted_arg_token1, ACTIONS(1273), 1, - aux_sym_single_quoted_arg_token1, + aux_sym_single_quoted_arg_token2, + STATE(416), 1, + aux_sym_single_quoted_arg_repeat1, + [17140] = 5, + ACTIONS(380), 1, + sym__comment, ACTIONS(1275), 1, - aux_sym_single_quoted_arg_token2, - STATE(399), 1, - aux_sym_single_quoted_arg_repeat1, - [16590] = 5, - ACTIONS(376), 1, - sym__comment, - ACTIONS(1277), 1, anon_sym_SQUOTE, - ACTIONS(1279), 1, + ACTIONS(1277), 1, aux_sym_single_quoted_arg_token1, - ACTIONS(1281), 1, + ACTIONS(1280), 1, aux_sym_single_quoted_arg_token2, - STATE(406), 1, + STATE(412), 1, aux_sym_single_quoted_arg_repeat1, - [16606] = 5, - ACTIONS(376), 1, + [17156] = 5, + ACTIONS(380), 1, sym__comment, - ACTIONS(1253), 1, + ACTIONS(1259), 1, aux_sym_single_quoted_arg_token1, - ACTIONS(1255), 1, + ACTIONS(1261), 1, aux_sym_single_quoted_arg_token2, ACTIONS(1283), 1, anon_sym_SQUOTE, - STATE(409), 1, + STATE(412), 1, aux_sym_single_quoted_arg_repeat1, - [16622] = 5, - ACTIONS(376), 1, + [17172] = 5, + ACTIONS(380), 1, sym__comment, - ACTIONS(1253), 1, + ACTIONS(1259), 1, aux_sym_single_quoted_arg_token1, - ACTIONS(1255), 1, + ACTIONS(1261), 1, aux_sym_single_quoted_arg_token2, ACTIONS(1285), 1, anon_sym_SQUOTE, - STATE(409), 1, + STATE(412), 1, aux_sym_single_quoted_arg_repeat1, - [16638] = 5, - ACTIONS(376), 1, + [17188] = 5, + ACTIONS(380), 1, sym__comment, - ACTIONS(1253), 1, + ACTIONS(1259), 1, aux_sym_single_quoted_arg_token1, - ACTIONS(1255), 1, + ACTIONS(1261), 1, aux_sym_single_quoted_arg_token2, ACTIONS(1287), 1, anon_sym_SQUOTE, - STATE(409), 1, + STATE(412), 1, aux_sym_single_quoted_arg_repeat1, - [16654] = 5, - ACTIONS(376), 1, + [17204] = 5, + ACTIONS(380), 1, sym__comment, + ACTIONS(1259), 1, + aux_sym_single_quoted_arg_token1, + ACTIONS(1261), 1, + aux_sym_single_quoted_arg_token2, ACTIONS(1289), 1, anon_sym_SQUOTE, - ACTIONS(1291), 1, - aux_sym_single_quoted_arg_token1, - ACTIONS(1294), 1, - aux_sym_single_quoted_arg_token2, - STATE(409), 1, + STATE(412), 1, aux_sym_single_quoted_arg_repeat1, - [16670] = 5, - ACTIONS(3), 1, + [17220] = 5, + ACTIONS(380), 1, sym__comment, + ACTIONS(1291), 1, + anon_sym_SQUOTE, + ACTIONS(1293), 1, + aux_sym_single_quoted_arg_token1, + ACTIONS(1295), 1, + aux_sym_single_quoted_arg_token2, + STATE(413), 1, + aux_sym_single_quoted_arg_repeat1, + [17236] = 5, + ACTIONS(380), 1, + sym__comment, + ACTIONS(1259), 1, + aux_sym_single_quoted_arg_token1, + ACTIONS(1261), 1, + aux_sym_single_quoted_arg_token2, ACTIONS(1297), 1, - aux_sym_tmp_eval_arg_token1, - STATE(112), 1, - aux_sym_tmp_eval_arg_repeat1, - STATE(148), 1, - sym_tmp_eval_arg, - STATE(187), 1, - sym_tmp_eval_args, - [16686] = 5, - ACTIONS(376), 1, + anon_sym_SQUOTE, + STATE(412), 1, + aux_sym_single_quoted_arg_repeat1, + [17252] = 5, + ACTIONS(380), 1, sym__comment, ACTIONS(1299), 1, anon_sym_SQUOTE, @@ -27127,10 +27744,10 @@ static uint16_t ts_small_parse_table[] = { aux_sym_single_quoted_arg_token1, ACTIONS(1303), 1, aux_sym_single_quoted_arg_token2, - STATE(407), 1, + STATE(415), 1, aux_sym_single_quoted_arg_repeat1, - [16702] = 5, - ACTIONS(376), 1, + [17268] = 5, + ACTIONS(380), 1, sym__comment, ACTIONS(1305), 1, anon_sym_SQUOTE, @@ -27138,517 +27755,525 @@ static uint16_t ts_small_parse_table[] = { aux_sym_single_quoted_arg_token1, ACTIONS(1309), 1, aux_sym_single_quoted_arg_token2, - STATE(408), 1, + STATE(414), 1, aux_sym_single_quoted_arg_repeat1, - [16718] = 5, - ACTIONS(376), 1, + [17284] = 5, + ACTIONS(3), 1, sym__comment, - ACTIONS(1253), 1, - aux_sym_single_quoted_arg_token1, - ACTIONS(1255), 1, - aux_sym_single_quoted_arg_token2, ACTIONS(1311), 1, - anon_sym_SQUOTE, - STATE(409), 1, - aux_sym_single_quoted_arg_repeat1, - [16734] = 4, + aux_sym_tmp_eval_arg_token1, + STATE(124), 1, + aux_sym_tmp_eval_arg_repeat1, + STATE(128), 1, + sym_tmp_eval_arg, + STATE(173), 1, + sym_tmp_eval_args, + [17300] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1244), 4, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_LF, + anon_sym_CR, + [17310] = 4, ACTIONS(3), 1, sym__comment, ACTIONS(1313), 1, - anon_sym_RPAREN, + anon_sym_SEMI, ACTIONS(1315), 1, - anon_sym_SEMI, - STATE(414), 1, - aux_sym_macro_content_repeat1, - [16747] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1318), 1, - anon_sym_RPAREN, - ACTIONS(1320), 1, - anon_sym_SEMI, - STATE(414), 1, - aux_sym_macro_content_repeat1, - [16760] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1322), 1, - anon_sym_RPAREN, - ACTIONS(1324), 1, - anon_sym_SEMI, - STATE(429), 1, - aux_sym__commands_singleline_repeat2, - [16773] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1322), 1, - anon_sym_RPAREN, - ACTIONS(1324), 1, - anon_sym_SEMI, - STATE(428), 1, - aux_sym__commands_singleline_repeat2, - [16786] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1322), 1, anon_sym_BQUOTE, - ACTIONS(1326), 1, - anon_sym_SEMI, - STATE(422), 1, + STATE(434), 1, aux_sym__commands_singleline_repeat2, - [16799] = 4, + [17323] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1320), 1, - anon_sym_SEMI, - ACTIONS(1328), 1, + ACTIONS(1315), 1, anon_sym_RPAREN, - STATE(431), 1, - aux_sym_macro_content_repeat1, - [16812] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1297), 1, - aux_sym_tmp_eval_arg_token1, - STATE(112), 1, - aux_sym_tmp_eval_arg_repeat1, - STATE(158), 1, - sym_tmp_eval_arg, - [16825] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1322), 1, - anon_sym_BQUOTE, - ACTIONS(1326), 1, + ACTIONS(1317), 1, anon_sym_SEMI, STATE(425), 1, aux_sym__commands_singleline_repeat2, - [16838] = 4, + [17336] = 4, ACTIONS(3), 1, sym__comment, + ACTIONS(1317), 1, + anon_sym_SEMI, + ACTIONS(1319), 1, + anon_sym_RPAREN, + STATE(427), 1, + aux_sym__commands_singleline_repeat2, + [17349] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1313), 1, + anon_sym_SEMI, + ACTIONS(1321), 1, + anon_sym_BQUOTE, + STATE(439), 1, + aux_sym__commands_singleline_repeat2, + [17362] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1323), 1, + anon_sym_RPAREN, + ACTIONS(1325), 1, + anon_sym_SEMI, + STATE(427), 1, + aux_sym__commands_singleline_repeat2, + [17375] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1323), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_BQUOTE, + [17384] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1311), 1, + aux_sym_tmp_eval_arg_token1, + STATE(124), 1, + aux_sym_tmp_eval_arg_repeat1, + STATE(164), 1, + sym_tmp_eval_arg, + [17397] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1328), 1, + anon_sym_RPAREN, ACTIONS(1330), 1, anon_sym_SEMI, + STATE(430), 1, + aux_sym_macro_content_repeat1, + [17410] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(281), 1, + sym__eq_sep_concat, + ACTIONS(441), 1, + sym__concat, + STATE(438), 1, + aux_sym_concatenation_repeat1, + [17423] = 4, + ACTIONS(3), 1, + sym__comment, ACTIONS(1333), 1, - anon_sym_BQUOTE, - STATE(422), 1, - aux_sym__commands_singleline_repeat2, - [16851] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1326), 1, - anon_sym_SEMI, - ACTIONS(1335), 1, - anon_sym_BQUOTE, - STATE(418), 1, - aux_sym__commands_singleline_repeat2, - [16864] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1324), 1, - anon_sym_SEMI, - ACTIONS(1335), 1, anon_sym_RPAREN, - STATE(417), 1, - aux_sym__commands_singleline_repeat2, - [16877] = 4, + ACTIONS(1335), 1, + anon_sym_SEMI, + STATE(433), 1, + aux_sym_macro_content_repeat1, + [17436] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1326), 1, + ACTIONS(1335), 1, anon_sym_SEMI, ACTIONS(1337), 1, - anon_sym_BQUOTE, - STATE(422), 1, - aux_sym__commands_singleline_repeat2, - [16890] = 4, - ACTIONS(3), 1, - sym__comment, - ACTIONS(275), 1, - sym__eq_sep_concat, - ACTIONS(405), 1, - sym__concat, + anon_sym_RPAREN, STATE(430), 1, - aux_sym_concatenation_repeat1, - [16903] = 2, + aux_sym_macro_content_repeat1, + [17449] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1333), 3, - anon_sym_RPAREN, + ACTIONS(1313), 1, anon_sym_SEMI, + ACTIONS(1319), 1, anon_sym_BQUOTE, - [16912] = 4, + STATE(436), 1, + aux_sym__commands_singleline_repeat2, + [17462] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1333), 1, + ACTIONS(1315), 1, anon_sym_RPAREN, + ACTIONS(1317), 1, + anon_sym_SEMI, + STATE(427), 1, + aux_sym__commands_singleline_repeat2, + [17475] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1323), 1, + anon_sym_BQUOTE, ACTIONS(1339), 1, anon_sym_SEMI, - STATE(428), 1, + STATE(436), 1, aux_sym__commands_singleline_repeat2, - [16925] = 4, + [17488] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1324), 1, + ACTIONS(1335), 1, anon_sym_SEMI, ACTIONS(1337), 1, anon_sym_RPAREN, - STATE(428), 1, - aux_sym__commands_singleline_repeat2, - [16938] = 4, + STATE(440), 1, + aux_sym_macro_content_repeat1, + [17501] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(268), 1, + ACTIONS(274), 1, sym__eq_sep_concat, ACTIONS(1342), 1, sym__concat, - STATE(430), 1, + STATE(438), 1, aux_sym_concatenation_repeat1, - [16951] = 4, + [17514] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1320), 1, + ACTIONS(1313), 1, + anon_sym_SEMI, + ACTIONS(1315), 1, + anon_sym_BQUOTE, + STATE(436), 1, + aux_sym__commands_singleline_repeat2, + [17527] = 4, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1335), 1, anon_sym_SEMI, ACTIONS(1345), 1, anon_sym_RPAREN, - STATE(414), 1, + STATE(430), 1, aux_sym_macro_content_repeat1, - [16964] = 4, + [17540] = 4, ACTIONS(3), 1, sym__comment, - ACTIONS(1320), 1, + ACTIONS(1317), 1, anon_sym_SEMI, - ACTIONS(1345), 1, + ACTIONS(1321), 1, anon_sym_RPAREN, - STATE(415), 1, - aux_sym_macro_content_repeat1, - [16977] = 2, + STATE(435), 1, + aux_sym__commands_singleline_repeat2, + [17553] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(297), 2, sym__eq_sep_concat, sym__concat, - [16985] = 3, + [17561] = 2, ACTIONS(3), 1, sym__comment, + ACTIONS(274), 2, + sym__eq_sep_concat, + sym__concat, + [17569] = 3, + ACTIONS(380), 1, + sym__comment, ACTIONS(1347), 1, - aux_sym__search_command_token1, - STATE(235), 1, - sym__search_command, - [16995] = 3, - ACTIONS(376), 1, - sym__comment, - ACTIONS(1349), 1, sym__any_command, - STATE(245), 1, + STATE(219), 1, sym_interpret_arg, - [17005] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1313), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [17013] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(293), 2, - sym__eq_sep_concat, - sym__concat, - [17021] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1351), 1, - aux_sym__search_command_token1, - STATE(235), 1, - sym__search_command, - [17031] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(268), 2, - sym__eq_sep_concat, - sym__concat, - [17039] = 2, + [17579] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(301), 2, sym__eq_sep_concat, sym__concat, - [17047] = 2, + [17587] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(309), 2, + ACTIONS(301), 2, sym__eq_sep_concat, sym__concat, - [17055] = 2, + [17595] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1349), 1, + anon_sym_RPAREN, + ACTIONS(1351), 1, + anon_sym_SEMI, + [17605] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(293), 2, + sym__eq_sep_concat, + sym__concat, + [17613] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1328), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [17621] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1353), 1, + anon_sym_GT, + ACTIONS(1355), 1, + anon_sym_GT_GT, + [17631] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1357), 1, + aux_sym__search_command_token1, + STATE(244), 1, + sym__search_command, + [17641] = 3, + ACTIONS(3), 1, + sym__comment, + ACTIONS(1359), 1, + aux_sym__search_command_token1, + STATE(244), 1, + sym__search_command, + [17651] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(289), 2, + sym__eq_sep_concat, + sym__concat, + [17659] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(313), 2, sym__eq_sep_concat, sym__concat, - [17063] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1353), 1, - anon_sym_RPAREN, - ACTIONS(1355), 1, - anon_sym_SEMI, - [17073] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(490), 1, - sym__eq_sep_concat, - STATE(154), 1, - aux_sym__eq_sep_val_concatenation_repeat1, - [17083] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(305), 2, - sym__eq_sep_concat, - sym__concat, - [17091] = 2, + [17667] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(285), 2, sym__eq_sep_concat, sym__concat, - [17099] = 2, + [17675] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(289), 2, + ACTIONS(305), 2, sym__eq_sep_concat, sym__concat, - [17107] = 2, + [17683] = 3, ACTIONS(3), 1, sym__comment, - ACTIONS(289), 2, + ACTIONS(504), 1, + sym__eq_sep_concat, + STATE(155), 1, + aux_sym__eq_sep_val_concatenation_repeat1, + [17693] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(309), 2, sym__eq_sep_concat, sym__concat, - [17115] = 3, - ACTIONS(3), 1, - sym__comment, - ACTIONS(1357), 1, - anon_sym_GT, - ACTIONS(1359), 1, - anon_sym_GT_GT, - [17125] = 2, + [17701] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1361), 1, anon_sym_RPAREN, - [17132] = 2, - ACTIONS(376), 1, + [17708] = 2, + ACTIONS(3), 1, + sym__comment, + ACTIONS(268), 1, + sym__eq_sep_concat, + [17715] = 2, + ACTIONS(3), 1, sym__comment, ACTIONS(1363), 1, - aux_sym_legacy_quoted_command_token1, - [17139] = 2, + anon_sym_BQUOTE, + [17722] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1365), 1, - anon_sym_BQUOTE, - [17146] = 2, + anon_sym_RPAREN, + [17729] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1367), 1, - anon_sym_RPAREN, - [17153] = 2, + anon_sym_BQUOTE, + [17736] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1369), 1, - anon_sym_BQUOTE, - [17160] = 2, + anon_sym_RPAREN, + [17743] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1371), 1, - anon_sym_RPAREN, - [17167] = 2, + anon_sym_BQUOTE, + [17750] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1373), 1, - anon_sym_BQUOTE, - [17174] = 2, + anon_sym_RPAREN, + [17757] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1375), 1, - anon_sym_RPAREN, - [17181] = 2, + anon_sym_BQUOTE, + [17764] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1377), 1, - anon_sym_BQUOTE, - [17188] = 2, + anon_sym_RPAREN, + [17771] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1379), 1, - anon_sym_RPAREN, - [17195] = 2, + anon_sym_BQUOTE, + [17778] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1381), 1, - anon_sym_BQUOTE, - [17202] = 2, + anon_sym_RPAREN, + [17785] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1383), 1, - anon_sym_RPAREN, - [17209] = 2, + anon_sym_BQUOTE, + [17792] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1385), 1, - anon_sym_BQUOTE, - [17216] = 2, + anon_sym_RPAREN, + [17799] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1387), 1, - anon_sym_RPAREN, - [17223] = 2, + anon_sym_DOT, + [17806] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1389), 1, anon_sym_BQUOTE, - [17230] = 2, - ACTIONS(3), 1, + [17813] = 2, + ACTIONS(380), 1, sym__comment, ACTIONS(1391), 1, - sym__concat, - [17237] = 2, + aux_sym__interpret_command_token2, + [17820] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1393), 1, anon_sym_BQUOTE, - [17244] = 2, + [17827] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1395), 1, - anon_sym_RPAREN, - [17251] = 2, + sym__concat, + [17834] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1397), 1, - sym__concat, - [17258] = 2, + anon_sym_BQUOTE, + [17841] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1399), 1, anon_sym_RPAREN, - [17265] = 2, + [17848] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1401), 1, - anon_sym_DOT, - [17272] = 2, + anon_sym_RPAREN, + [17855] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1403), 1, - anon_sym_BQUOTE, - [17279] = 2, + sym__concat, + [17862] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1405), 1, anon_sym_RPAREN, - [17286] = 2, + [17869] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1407), 1, anon_sym_RPAREN, - [17293] = 2, + [17876] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1409), 1, - anon_sym_RPAREN, - [17300] = 2, + anon_sym_BQUOTE, + [17883] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1411), 1, - anon_sym_DQUOTE, - [17307] = 2, + anon_sym_BQUOTE, + [17890] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1413), 1, - anon_sym_RPAREN, - [17314] = 2, + sym__concat_pf_dot, + [17897] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1415), 1, anon_sym_RPAREN, - [17321] = 2, + [17904] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1417), 1, anon_sym_RPAREN, - [17328] = 2, + [17911] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1419), 1, - anon_sym_BQUOTE, - [17335] = 2, + anon_sym_RPAREN, + [17918] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1421), 1, - sym__concat_pf_dot, - [17342] = 2, + anon_sym_RPAREN, + [17925] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1423), 1, - ts_builtin_sym_end, - [17349] = 2, - ACTIONS(3), 1, - sym__comment, - ACTIONS(281), 1, - sym__eq_sep_concat, - [17356] = 2, + anon_sym_DQUOTE, + [17932] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1425), 1, - anon_sym_BQUOTE, - [17363] = 2, + anon_sym_RPAREN, + [17939] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1427), 1, anon_sym_RPAREN, - [17370] = 2, + [17946] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1429), 1, - sym__concat_pf_dot, - [17377] = 2, + anon_sym_RPAREN, + [17953] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1431), 1, - anon_sym_RPAREN, - [17384] = 2, + ts_builtin_sym_end, + [17960] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1433), 1, - anon_sym_RPAREN, - [17391] = 2, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [17967] = 2, + ACTIONS(380), 1, sym__comment, ACTIONS(1435), 1, - anon_sym_BQUOTE, - [17398] = 2, - ACTIONS(376), 1, + aux_sym_legacy_quoted_command_token1, + [17974] = 2, + ACTIONS(3), 1, sym__comment, ACTIONS(1437), 1, - aux_sym__interpret_command_token2, - [17405] = 2, + sym__concat_pf_dot, + [17981] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1439), 1, anon_sym_RPAREN, - [17412] = 2, - ACTIONS(376), 1, - sym__comment, - ACTIONS(1441), 1, - aux_sym__interpret_command_token2, - [17419] = 2, + [17988] = 2, ACTIONS(3), 1, sym__comment, - ACTIONS(1443), 1, + ACTIONS(1441), 1, anon_sym_RPAREN, - [17426] = 2, + [17995] = 2, + ACTIONS(380), 1, + sym__comment, + ACTIONS(1443), 1, + aux_sym__interpret_command_token2, + [18002] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1445), 1, anon_sym_RPAREN, - [17433] = 2, + [18009] = 2, ACTIONS(3), 1, sym__comment, ACTIONS(1447), 1, @@ -27657,18 +28282,18 @@ static uint16_t ts_small_parse_table[] = { static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(87)] = 0, - [SMALL_STATE(88)] = 73, - [SMALL_STATE(89)] = 148, - [SMALL_STATE(90)] = 231, - [SMALL_STATE(91)] = 318, + [SMALL_STATE(88)] = 71, + [SMALL_STATE(89)] = 146, + [SMALL_STATE(90)] = 229, + [SMALL_STATE(91)] = 302, [SMALL_STATE(92)] = 389, [SMALL_STATE(93)] = 464, - [SMALL_STATE(94)] = 538, - [SMALL_STATE(95)] = 608, - [SMALL_STATE(96)] = 678, - [SMALL_STATE(97)] = 752, - [SMALL_STATE(98)] = 822, - [SMALL_STATE(99)] = 896, + [SMALL_STATE(94)] = 534, + [SMALL_STATE(95)] = 604, + [SMALL_STATE(96)] = 674, + [SMALL_STATE(97)] = 748, + [SMALL_STATE(98)] = 818, + [SMALL_STATE(99)] = 892, [SMALL_STATE(100)] = 966, [SMALL_STATE(101)] = 1036, [SMALL_STATE(102)] = 1105, @@ -27681,106 +28306,106 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(109)] = 1603, [SMALL_STATE(110)] = 1671, [SMALL_STATE(111)] = 1742, - [SMALL_STATE(112)] = 1815, - [SMALL_STATE(113)] = 1886, - [SMALL_STATE(114)] = 1957, - [SMALL_STATE(115)] = 2028, - [SMALL_STATE(116)] = 2099, - [SMALL_STATE(117)] = 2170, - [SMALL_STATE(118)] = 2241, - [SMALL_STATE(119)] = 2312, - [SMALL_STATE(120)] = 2383, - [SMALL_STATE(121)] = 2452, - [SMALL_STATE(122)] = 2523, - [SMALL_STATE(123)] = 2594, + [SMALL_STATE(112)] = 1813, + [SMALL_STATE(113)] = 1884, + [SMALL_STATE(114)] = 1955, + [SMALL_STATE(115)] = 2026, + [SMALL_STATE(116)] = 2097, + [SMALL_STATE(117)] = 2168, + [SMALL_STATE(118)] = 2239, + [SMALL_STATE(119)] = 2310, + [SMALL_STATE(120)] = 2381, + [SMALL_STATE(121)] = 2454, + [SMALL_STATE(122)] = 2525, + [SMALL_STATE(123)] = 2596, [SMALL_STATE(124)] = 2665, [SMALL_STATE(125)] = 2736, [SMALL_STATE(126)] = 2802, [SMALL_STATE(127)] = 2868, [SMALL_STATE(128)] = 2934, - [SMALL_STATE(129)] = 3000, - [SMALL_STATE(130)] = 3076, - [SMALL_STATE(131)] = 3150, - [SMALL_STATE(132)] = 3216, - [SMALL_STATE(133)] = 3282, - [SMALL_STATE(134)] = 3348, - [SMALL_STATE(135)] = 3414, - [SMALL_STATE(136)] = 3484, - [SMALL_STATE(137)] = 3550, - [SMALL_STATE(138)] = 3620, - [SMALL_STATE(139)] = 3686, - [SMALL_STATE(140)] = 3752, - [SMALL_STATE(141)] = 3818, - [SMALL_STATE(142)] = 3884, - [SMALL_STATE(143)] = 3950, + [SMALL_STATE(129)] = 3004, + [SMALL_STATE(130)] = 3070, + [SMALL_STATE(131)] = 3136, + [SMALL_STATE(132)] = 3202, + [SMALL_STATE(133)] = 3268, + [SMALL_STATE(134)] = 3334, + [SMALL_STATE(135)] = 3404, + [SMALL_STATE(136)] = 3470, + [SMALL_STATE(137)] = 3536, + [SMALL_STATE(138)] = 3612, + [SMALL_STATE(139)] = 3678, + [SMALL_STATE(140)] = 3744, + [SMALL_STATE(141)] = 3810, + [SMALL_STATE(142)] = 3876, + [SMALL_STATE(143)] = 3942, [SMALL_STATE(144)] = 4016, [SMALL_STATE(145)] = 4082, [SMALL_STATE(146)] = 4148, [SMALL_STATE(147)] = 4214, [SMALL_STATE(148)] = 4280, - [SMALL_STATE(149)] = 4350, - [SMALL_STATE(150)] = 4416, - [SMALL_STATE(151)] = 4482, + [SMALL_STATE(149)] = 4346, + [SMALL_STATE(150)] = 4412, + [SMALL_STATE(151)] = 4478, [SMALL_STATE(152)] = 4548, - [SMALL_STATE(153)] = 4614, - [SMALL_STATE(154)] = 4680, - [SMALL_STATE(155)] = 4750, - [SMALL_STATE(156)] = 4820, - [SMALL_STATE(157)] = 4886, + [SMALL_STATE(153)] = 4618, + [SMALL_STATE(154)] = 4684, + [SMALL_STATE(155)] = 4754, + [SMALL_STATE(156)] = 4824, + [SMALL_STATE(157)] = 4890, [SMALL_STATE(158)] = 4956, [SMALL_STATE(159)] = 5021, [SMALL_STATE(160)] = 5086, - [SMALL_STATE(161)] = 5151, - [SMALL_STATE(162)] = 5216, - [SMALL_STATE(163)] = 5281, - [SMALL_STATE(164)] = 5346, - [SMALL_STATE(165)] = 5413, - [SMALL_STATE(166)] = 5478, - [SMALL_STATE(167)] = 5551, - [SMALL_STATE(168)] = 5618, + [SMALL_STATE(161)] = 5251, + [SMALL_STATE(162)] = 5316, + [SMALL_STATE(163)] = 5381, + [SMALL_STATE(164)] = 5446, + [SMALL_STATE(165)] = 5511, + [SMALL_STATE(166)] = 5576, + [SMALL_STATE(167)] = 5643, + [SMALL_STATE(168)] = 5716, [SMALL_STATE(169)] = 5783, [SMALL_STATE(170)] = 5848, [SMALL_STATE(171)] = 5915, - [SMALL_STATE(172)] = 5982, + [SMALL_STATE(172)] = 5980, [SMALL_STATE(173)] = 6047, [SMALL_STATE(174)] = 6111, - [SMALL_STATE(175)] = 6177, + [SMALL_STATE(175)] = 6175, [SMALL_STATE(176)] = 6241, [SMALL_STATE(177)] = 6305, [SMALL_STATE(178)] = 6369, [SMALL_STATE(179)] = 6433, - [SMALL_STATE(180)] = 6499, - [SMALL_STATE(181)] = 6563, - [SMALL_STATE(182)] = 6627, - [SMALL_STATE(183)] = 6691, - [SMALL_STATE(184)] = 6755, - [SMALL_STATE(185)] = 6819, - [SMALL_STATE(186)] = 6883, - [SMALL_STATE(187)] = 6947, - [SMALL_STATE(188)] = 7011, - [SMALL_STATE(189)] = 7075, - [SMALL_STATE(190)] = 7139, - [SMALL_STATE(191)] = 7203, - [SMALL_STATE(192)] = 7267, - [SMALL_STATE(193)] = 7331, - [SMALL_STATE(194)] = 7395, - [SMALL_STATE(195)] = 7459, - [SMALL_STATE(196)] = 7523, - [SMALL_STATE(197)] = 7587, - [SMALL_STATE(198)] = 7651, - [SMALL_STATE(199)] = 7715, - [SMALL_STATE(200)] = 7779, - [SMALL_STATE(201)] = 7843, - [SMALL_STATE(202)] = 7907, - [SMALL_STATE(203)] = 7971, - [SMALL_STATE(204)] = 8035, - [SMALL_STATE(205)] = 8099, - [SMALL_STATE(206)] = 8163, - [SMALL_STATE(207)] = 8227, - [SMALL_STATE(208)] = 8291, - [SMALL_STATE(209)] = 8355, - [SMALL_STATE(210)] = 8419, - [SMALL_STATE(211)] = 8483, + [SMALL_STATE(180)] = 6497, + [SMALL_STATE(181)] = 6561, + [SMALL_STATE(182)] = 6625, + [SMALL_STATE(183)] = 6689, + [SMALL_STATE(184)] = 6753, + [SMALL_STATE(185)] = 6817, + [SMALL_STATE(186)] = 6881, + [SMALL_STATE(187)] = 6945, + [SMALL_STATE(188)] = 7009, + [SMALL_STATE(189)] = 7073, + [SMALL_STATE(190)] = 7137, + [SMALL_STATE(191)] = 7201, + [SMALL_STATE(192)] = 7265, + [SMALL_STATE(193)] = 7329, + [SMALL_STATE(194)] = 7393, + [SMALL_STATE(195)] = 7457, + [SMALL_STATE(196)] = 7521, + [SMALL_STATE(197)] = 7585, + [SMALL_STATE(198)] = 7649, + [SMALL_STATE(199)] = 7713, + [SMALL_STATE(200)] = 7777, + [SMALL_STATE(201)] = 7841, + [SMALL_STATE(202)] = 7905, + [SMALL_STATE(203)] = 7969, + [SMALL_STATE(204)] = 8033, + [SMALL_STATE(205)] = 8097, + [SMALL_STATE(206)] = 8161, + [SMALL_STATE(207)] = 8225, + [SMALL_STATE(208)] = 8289, + [SMALL_STATE(209)] = 8353, + [SMALL_STATE(210)] = 8417, + [SMALL_STATE(211)] = 8481, [SMALL_STATE(212)] = 8547, [SMALL_STATE(213)] = 8611, [SMALL_STATE(214)] = 8675, @@ -27823,247 +28448,256 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(251)] = 11043, [SMALL_STATE(252)] = 11107, [SMALL_STATE(253)] = 11171, - [SMALL_STATE(254)] = 11320, - [SMALL_STATE(255)] = 11469, - [SMALL_STATE(256)] = 11632, - [SMALL_STATE(257)] = 11795, - [SMALL_STATE(258)] = 11860, - [SMALL_STATE(259)] = 11923, - [SMALL_STATE(260)] = 11986, - [SMALL_STATE(261)] = 12049, - [SMALL_STATE(262)] = 12112, - [SMALL_STATE(263)] = 12258, - [SMALL_STATE(264)] = 12404, - [SMALL_STATE(265)] = 12446, - [SMALL_STATE(266)] = 12485, - [SMALL_STATE(267)] = 12537, - [SMALL_STATE(268)] = 12589, - [SMALL_STATE(269)] = 12641, - [SMALL_STATE(270)] = 12688, - [SMALL_STATE(271)] = 12735, - [SMALL_STATE(272)] = 12781, - [SMALL_STATE(273)] = 12829, - [SMALL_STATE(274)] = 12875, - [SMALL_STATE(275)] = 12921, - [SMALL_STATE(276)] = 12967, - [SMALL_STATE(277)] = 13013, - [SMALL_STATE(278)] = 13059, - [SMALL_STATE(279)] = 13105, - [SMALL_STATE(280)] = 13151, - [SMALL_STATE(281)] = 13197, - [SMALL_STATE(282)] = 13243, - [SMALL_STATE(283)] = 13289, - [SMALL_STATE(284)] = 13335, - [SMALL_STATE(285)] = 13381, - [SMALL_STATE(286)] = 13427, - [SMALL_STATE(287)] = 13473, - [SMALL_STATE(288)] = 13519, - [SMALL_STATE(289)] = 13565, - [SMALL_STATE(290)] = 13611, - [SMALL_STATE(291)] = 13657, - [SMALL_STATE(292)] = 13703, - [SMALL_STATE(293)] = 13749, - [SMALL_STATE(294)] = 13795, - [SMALL_STATE(295)] = 13837, - [SMALL_STATE(296)] = 13879, - [SMALL_STATE(297)] = 13921, - [SMALL_STATE(298)] = 13963, - [SMALL_STATE(299)] = 14005, - [SMALL_STATE(300)] = 14047, - [SMALL_STATE(301)] = 14089, - [SMALL_STATE(302)] = 14131, - [SMALL_STATE(303)] = 14173, - [SMALL_STATE(304)] = 14215, - [SMALL_STATE(305)] = 14257, - [SMALL_STATE(306)] = 14299, - [SMALL_STATE(307)] = 14341, - [SMALL_STATE(308)] = 14383, - [SMALL_STATE(309)] = 14425, - [SMALL_STATE(310)] = 14452, - [SMALL_STATE(311)] = 14479, - [SMALL_STATE(312)] = 14506, - [SMALL_STATE(313)] = 14528, - [SMALL_STATE(314)] = 14550, - [SMALL_STATE(315)] = 14586, - [SMALL_STATE(316)] = 14608, - [SMALL_STATE(317)] = 14644, - [SMALL_STATE(318)] = 14666, - [SMALL_STATE(319)] = 14688, - [SMALL_STATE(320)] = 14710, - [SMALL_STATE(321)] = 14732, - [SMALL_STATE(322)] = 14768, - [SMALL_STATE(323)] = 14790, - [SMALL_STATE(324)] = 14826, - [SMALL_STATE(325)] = 14862, - [SMALL_STATE(326)] = 14884, - [SMALL_STATE(327)] = 14906, - [SMALL_STATE(328)] = 14941, - [SMALL_STATE(329)] = 14976, - [SMALL_STATE(330)] = 15011, - [SMALL_STATE(331)] = 15046, - [SMALL_STATE(332)] = 15081, - [SMALL_STATE(333)] = 15116, - [SMALL_STATE(334)] = 15137, - [SMALL_STATE(335)] = 15172, - [SMALL_STATE(336)] = 15207, - [SMALL_STATE(337)] = 15242, - [SMALL_STATE(338)] = 15277, - [SMALL_STATE(339)] = 15311, - [SMALL_STATE(340)] = 15347, - [SMALL_STATE(341)] = 15383, - [SMALL_STATE(342)] = 15416, - [SMALL_STATE(343)] = 15449, - [SMALL_STATE(344)] = 15474, - [SMALL_STATE(345)] = 15501, - [SMALL_STATE(346)] = 15526, - [SMALL_STATE(347)] = 15551, - [SMALL_STATE(348)] = 15575, - [SMALL_STATE(349)] = 15599, - [SMALL_STATE(350)] = 15623, - [SMALL_STATE(351)] = 15647, - [SMALL_STATE(352)] = 15671, - [SMALL_STATE(353)] = 15695, - [SMALL_STATE(354)] = 15715, - [SMALL_STATE(355)] = 15731, - [SMALL_STATE(356)] = 15747, - [SMALL_STATE(357)] = 15771, - [SMALL_STATE(358)] = 15795, - [SMALL_STATE(359)] = 15811, - [SMALL_STATE(360)] = 15835, - [SMALL_STATE(361)] = 15851, - [SMALL_STATE(362)] = 15867, - [SMALL_STATE(363)] = 15891, - [SMALL_STATE(364)] = 15915, - [SMALL_STATE(365)] = 15939, - [SMALL_STATE(366)] = 15959, - [SMALL_STATE(367)] = 15979, - [SMALL_STATE(368)] = 16003, - [SMALL_STATE(369)] = 16018, - [SMALL_STATE(370)] = 16041, - [SMALL_STATE(371)] = 16056, - [SMALL_STATE(372)] = 16077, - [SMALL_STATE(373)] = 16096, - [SMALL_STATE(374)] = 16119, - [SMALL_STATE(375)] = 16140, - [SMALL_STATE(376)] = 16155, - [SMALL_STATE(377)] = 16170, - [SMALL_STATE(378)] = 16193, - [SMALL_STATE(379)] = 16208, - [SMALL_STATE(380)] = 16227, - [SMALL_STATE(381)] = 16246, - [SMALL_STATE(382)] = 16260, - [SMALL_STATE(383)] = 16274, - [SMALL_STATE(384)] = 16288, - [SMALL_STATE(385)] = 16302, - [SMALL_STATE(386)] = 16314, - [SMALL_STATE(387)] = 16328, - [SMALL_STATE(388)] = 16342, - [SMALL_STATE(389)] = 16356, - [SMALL_STATE(390)] = 16370, - [SMALL_STATE(391)] = 16384, - [SMALL_STATE(392)] = 16398, - [SMALL_STATE(393)] = 16412, - [SMALL_STATE(394)] = 16427, - [SMALL_STATE(395)] = 16440, - [SMALL_STATE(396)] = 16455, - [SMALL_STATE(397)] = 16470, - [SMALL_STATE(398)] = 16485, - [SMALL_STATE(399)] = 16500, - [SMALL_STATE(400)] = 16516, - [SMALL_STATE(401)] = 16532, - [SMALL_STATE(402)] = 16548, - [SMALL_STATE(403)] = 16564, - [SMALL_STATE(404)] = 16574, - [SMALL_STATE(405)] = 16590, - [SMALL_STATE(406)] = 16606, - [SMALL_STATE(407)] = 16622, - [SMALL_STATE(408)] = 16638, - [SMALL_STATE(409)] = 16654, - [SMALL_STATE(410)] = 16670, - [SMALL_STATE(411)] = 16686, - [SMALL_STATE(412)] = 16702, - [SMALL_STATE(413)] = 16718, - [SMALL_STATE(414)] = 16734, - [SMALL_STATE(415)] = 16747, - [SMALL_STATE(416)] = 16760, - [SMALL_STATE(417)] = 16773, - [SMALL_STATE(418)] = 16786, - [SMALL_STATE(419)] = 16799, - [SMALL_STATE(420)] = 16812, - [SMALL_STATE(421)] = 16825, - [SMALL_STATE(422)] = 16838, - [SMALL_STATE(423)] = 16851, - [SMALL_STATE(424)] = 16864, - [SMALL_STATE(425)] = 16877, - [SMALL_STATE(426)] = 16890, - [SMALL_STATE(427)] = 16903, - [SMALL_STATE(428)] = 16912, - [SMALL_STATE(429)] = 16925, - [SMALL_STATE(430)] = 16938, - [SMALL_STATE(431)] = 16951, - [SMALL_STATE(432)] = 16964, - [SMALL_STATE(433)] = 16977, - [SMALL_STATE(434)] = 16985, - [SMALL_STATE(435)] = 16995, - [SMALL_STATE(436)] = 17005, - [SMALL_STATE(437)] = 17013, - [SMALL_STATE(438)] = 17021, - [SMALL_STATE(439)] = 17031, - [SMALL_STATE(440)] = 17039, - [SMALL_STATE(441)] = 17047, - [SMALL_STATE(442)] = 17055, - [SMALL_STATE(443)] = 17063, - [SMALL_STATE(444)] = 17073, - [SMALL_STATE(445)] = 17083, - [SMALL_STATE(446)] = 17091, - [SMALL_STATE(447)] = 17099, - [SMALL_STATE(448)] = 17107, - [SMALL_STATE(449)] = 17115, - [SMALL_STATE(450)] = 17125, - [SMALL_STATE(451)] = 17132, - [SMALL_STATE(452)] = 17139, - [SMALL_STATE(453)] = 17146, - [SMALL_STATE(454)] = 17153, - [SMALL_STATE(455)] = 17160, - [SMALL_STATE(456)] = 17167, - [SMALL_STATE(457)] = 17174, - [SMALL_STATE(458)] = 17181, - [SMALL_STATE(459)] = 17188, - [SMALL_STATE(460)] = 17195, - [SMALL_STATE(461)] = 17202, - [SMALL_STATE(462)] = 17209, - [SMALL_STATE(463)] = 17216, - [SMALL_STATE(464)] = 17223, - [SMALL_STATE(465)] = 17230, - [SMALL_STATE(466)] = 17237, - [SMALL_STATE(467)] = 17244, - [SMALL_STATE(468)] = 17251, - [SMALL_STATE(469)] = 17258, - [SMALL_STATE(470)] = 17265, - [SMALL_STATE(471)] = 17272, - [SMALL_STATE(472)] = 17279, - [SMALL_STATE(473)] = 17286, - [SMALL_STATE(474)] = 17293, - [SMALL_STATE(475)] = 17300, - [SMALL_STATE(476)] = 17307, - [SMALL_STATE(477)] = 17314, - [SMALL_STATE(478)] = 17321, - [SMALL_STATE(479)] = 17328, - [SMALL_STATE(480)] = 17335, - [SMALL_STATE(481)] = 17342, - [SMALL_STATE(482)] = 17349, - [SMALL_STATE(483)] = 17356, - [SMALL_STATE(484)] = 17363, - [SMALL_STATE(485)] = 17370, - [SMALL_STATE(486)] = 17377, - [SMALL_STATE(487)] = 17384, - [SMALL_STATE(488)] = 17391, - [SMALL_STATE(489)] = 17398, - [SMALL_STATE(490)] = 17405, - [SMALL_STATE(491)] = 17412, - [SMALL_STATE(492)] = 17419, - [SMALL_STATE(493)] = 17426, - [SMALL_STATE(494)] = 17433, + [SMALL_STATE(254)] = 11235, + [SMALL_STATE(255)] = 11299, + [SMALL_STATE(256)] = 11363, + [SMALL_STATE(257)] = 11427, + [SMALL_STATE(258)] = 11491, + [SMALL_STATE(259)] = 11555, + [SMALL_STATE(260)] = 11619, + [SMALL_STATE(261)] = 11683, + [SMALL_STATE(262)] = 11747, + [SMALL_STATE(263)] = 11812, + [SMALL_STATE(264)] = 11961, + [SMALL_STATE(265)] = 12110, + [SMALL_STATE(266)] = 12273, + [SMALL_STATE(267)] = 12436, + [SMALL_STATE(268)] = 12499, + [SMALL_STATE(269)] = 12562, + [SMALL_STATE(270)] = 12625, + [SMALL_STATE(271)] = 12688, + [SMALL_STATE(272)] = 12834, + [SMALL_STATE(273)] = 12980, + [SMALL_STATE(274)] = 13022, + [SMALL_STATE(275)] = 13061, + [SMALL_STATE(276)] = 13113, + [SMALL_STATE(277)] = 13165, + [SMALL_STATE(278)] = 13217, + [SMALL_STATE(279)] = 13264, + [SMALL_STATE(280)] = 13311, + [SMALL_STATE(281)] = 13357, + [SMALL_STATE(282)] = 13403, + [SMALL_STATE(283)] = 13449, + [SMALL_STATE(284)] = 13495, + [SMALL_STATE(285)] = 13541, + [SMALL_STATE(286)] = 13587, + [SMALL_STATE(287)] = 13633, + [SMALL_STATE(288)] = 13679, + [SMALL_STATE(289)] = 13725, + [SMALL_STATE(290)] = 13771, + [SMALL_STATE(291)] = 13817, + [SMALL_STATE(292)] = 13863, + [SMALL_STATE(293)] = 13909, + [SMALL_STATE(294)] = 13955, + [SMALL_STATE(295)] = 14001, + [SMALL_STATE(296)] = 14047, + [SMALL_STATE(297)] = 14093, + [SMALL_STATE(298)] = 14139, + [SMALL_STATE(299)] = 14185, + [SMALL_STATE(300)] = 14231, + [SMALL_STATE(301)] = 14279, + [SMALL_STATE(302)] = 14325, + [SMALL_STATE(303)] = 14371, + [SMALL_STATE(304)] = 14413, + [SMALL_STATE(305)] = 14455, + [SMALL_STATE(306)] = 14497, + [SMALL_STATE(307)] = 14539, + [SMALL_STATE(308)] = 14581, + [SMALL_STATE(309)] = 14623, + [SMALL_STATE(310)] = 14665, + [SMALL_STATE(311)] = 14707, + [SMALL_STATE(312)] = 14749, + [SMALL_STATE(313)] = 14791, + [SMALL_STATE(314)] = 14833, + [SMALL_STATE(315)] = 14875, + [SMALL_STATE(316)] = 14917, + [SMALL_STATE(317)] = 14959, + [SMALL_STATE(318)] = 15001, + [SMALL_STATE(319)] = 15028, + [SMALL_STATE(320)] = 15055, + [SMALL_STATE(321)] = 15082, + [SMALL_STATE(322)] = 15104, + [SMALL_STATE(323)] = 15126, + [SMALL_STATE(324)] = 15148, + [SMALL_STATE(325)] = 15184, + [SMALL_STATE(326)] = 15206, + [SMALL_STATE(327)] = 15242, + [SMALL_STATE(328)] = 15278, + [SMALL_STATE(329)] = 15300, + [SMALL_STATE(330)] = 15322, + [SMALL_STATE(331)] = 15344, + [SMALL_STATE(332)] = 15366, + [SMALL_STATE(333)] = 15388, + [SMALL_STATE(334)] = 15410, + [SMALL_STATE(335)] = 15446, + [SMALL_STATE(336)] = 15482, + [SMALL_STATE(337)] = 15517, + [SMALL_STATE(338)] = 15552, + [SMALL_STATE(339)] = 15587, + [SMALL_STATE(340)] = 15608, + [SMALL_STATE(341)] = 15643, + [SMALL_STATE(342)] = 15678, + [SMALL_STATE(343)] = 15713, + [SMALL_STATE(344)] = 15748, + [SMALL_STATE(345)] = 15783, + [SMALL_STATE(346)] = 15818, + [SMALL_STATE(347)] = 15853, + [SMALL_STATE(348)] = 15887, + [SMALL_STATE(349)] = 15923, + [SMALL_STATE(350)] = 15959, + [SMALL_STATE(351)] = 15992, + [SMALL_STATE(352)] = 16025, + [SMALL_STATE(353)] = 16050, + [SMALL_STATE(354)] = 16075, + [SMALL_STATE(355)] = 16100, + [SMALL_STATE(356)] = 16127, + [SMALL_STATE(357)] = 16147, + [SMALL_STATE(358)] = 16171, + [SMALL_STATE(359)] = 16195, + [SMALL_STATE(360)] = 16211, + [SMALL_STATE(361)] = 16235, + [SMALL_STATE(362)] = 16259, + [SMALL_STATE(363)] = 16275, + [SMALL_STATE(364)] = 16299, + [SMALL_STATE(365)] = 16323, + [SMALL_STATE(366)] = 16347, + [SMALL_STATE(367)] = 16367, + [SMALL_STATE(368)] = 16383, + [SMALL_STATE(369)] = 16399, + [SMALL_STATE(370)] = 16423, + [SMALL_STATE(371)] = 16443, + [SMALL_STATE(372)] = 16467, + [SMALL_STATE(373)] = 16491, + [SMALL_STATE(374)] = 16515, + [SMALL_STATE(375)] = 16539, + [SMALL_STATE(376)] = 16555, + [SMALL_STATE(377)] = 16579, + [SMALL_STATE(378)] = 16594, + [SMALL_STATE(379)] = 16613, + [SMALL_STATE(380)] = 16634, + [SMALL_STATE(381)] = 16655, + [SMALL_STATE(382)] = 16678, + [SMALL_STATE(383)] = 16693, + [SMALL_STATE(384)] = 16716, + [SMALL_STATE(385)] = 16731, + [SMALL_STATE(386)] = 16750, + [SMALL_STATE(387)] = 16773, + [SMALL_STATE(388)] = 16792, + [SMALL_STATE(389)] = 16807, + [SMALL_STATE(390)] = 16822, + [SMALL_STATE(391)] = 16836, + [SMALL_STATE(392)] = 16850, + [SMALL_STATE(393)] = 16864, + [SMALL_STATE(394)] = 16878, + [SMALL_STATE(395)] = 16892, + [SMALL_STATE(396)] = 16906, + [SMALL_STATE(397)] = 16920, + [SMALL_STATE(398)] = 16934, + [SMALL_STATE(399)] = 16948, + [SMALL_STATE(400)] = 16962, + [SMALL_STATE(401)] = 16976, + [SMALL_STATE(402)] = 16988, + [SMALL_STATE(403)] = 17003, + [SMALL_STATE(404)] = 17018, + [SMALL_STATE(405)] = 17033, + [SMALL_STATE(406)] = 17046, + [SMALL_STATE(407)] = 17061, + [SMALL_STATE(408)] = 17076, + [SMALL_STATE(409)] = 17092, + [SMALL_STATE(410)] = 17108, + [SMALL_STATE(411)] = 17124, + [SMALL_STATE(412)] = 17140, + [SMALL_STATE(413)] = 17156, + [SMALL_STATE(414)] = 17172, + [SMALL_STATE(415)] = 17188, + [SMALL_STATE(416)] = 17204, + [SMALL_STATE(417)] = 17220, + [SMALL_STATE(418)] = 17236, + [SMALL_STATE(419)] = 17252, + [SMALL_STATE(420)] = 17268, + [SMALL_STATE(421)] = 17284, + [SMALL_STATE(422)] = 17300, + [SMALL_STATE(423)] = 17310, + [SMALL_STATE(424)] = 17323, + [SMALL_STATE(425)] = 17336, + [SMALL_STATE(426)] = 17349, + [SMALL_STATE(427)] = 17362, + [SMALL_STATE(428)] = 17375, + [SMALL_STATE(429)] = 17384, + [SMALL_STATE(430)] = 17397, + [SMALL_STATE(431)] = 17410, + [SMALL_STATE(432)] = 17423, + [SMALL_STATE(433)] = 17436, + [SMALL_STATE(434)] = 17449, + [SMALL_STATE(435)] = 17462, + [SMALL_STATE(436)] = 17475, + [SMALL_STATE(437)] = 17488, + [SMALL_STATE(438)] = 17501, + [SMALL_STATE(439)] = 17514, + [SMALL_STATE(440)] = 17527, + [SMALL_STATE(441)] = 17540, + [SMALL_STATE(442)] = 17553, + [SMALL_STATE(443)] = 17561, + [SMALL_STATE(444)] = 17569, + [SMALL_STATE(445)] = 17579, + [SMALL_STATE(446)] = 17587, + [SMALL_STATE(447)] = 17595, + [SMALL_STATE(448)] = 17605, + [SMALL_STATE(449)] = 17613, + [SMALL_STATE(450)] = 17621, + [SMALL_STATE(451)] = 17631, + [SMALL_STATE(452)] = 17641, + [SMALL_STATE(453)] = 17651, + [SMALL_STATE(454)] = 17659, + [SMALL_STATE(455)] = 17667, + [SMALL_STATE(456)] = 17675, + [SMALL_STATE(457)] = 17683, + [SMALL_STATE(458)] = 17693, + [SMALL_STATE(459)] = 17701, + [SMALL_STATE(460)] = 17708, + [SMALL_STATE(461)] = 17715, + [SMALL_STATE(462)] = 17722, + [SMALL_STATE(463)] = 17729, + [SMALL_STATE(464)] = 17736, + [SMALL_STATE(465)] = 17743, + [SMALL_STATE(466)] = 17750, + [SMALL_STATE(467)] = 17757, + [SMALL_STATE(468)] = 17764, + [SMALL_STATE(469)] = 17771, + [SMALL_STATE(470)] = 17778, + [SMALL_STATE(471)] = 17785, + [SMALL_STATE(472)] = 17792, + [SMALL_STATE(473)] = 17799, + [SMALL_STATE(474)] = 17806, + [SMALL_STATE(475)] = 17813, + [SMALL_STATE(476)] = 17820, + [SMALL_STATE(477)] = 17827, + [SMALL_STATE(478)] = 17834, + [SMALL_STATE(479)] = 17841, + [SMALL_STATE(480)] = 17848, + [SMALL_STATE(481)] = 17855, + [SMALL_STATE(482)] = 17862, + [SMALL_STATE(483)] = 17869, + [SMALL_STATE(484)] = 17876, + [SMALL_STATE(485)] = 17883, + [SMALL_STATE(486)] = 17890, + [SMALL_STATE(487)] = 17897, + [SMALL_STATE(488)] = 17904, + [SMALL_STATE(489)] = 17911, + [SMALL_STATE(490)] = 17918, + [SMALL_STATE(491)] = 17925, + [SMALL_STATE(492)] = 17932, + [SMALL_STATE(493)] = 17939, + [SMALL_STATE(494)] = 17946, + [SMALL_STATE(495)] = 17953, + [SMALL_STATE(496)] = 17960, + [SMALL_STATE(497)] = 17967, + [SMALL_STATE(498)] = 17974, + [SMALL_STATE(499)] = 17981, + [SMALL_STATE(500)] = 17988, + [SMALL_STATE(501)] = 17995, + [SMALL_STATE(502)] = 18002, + [SMALL_STATE(503)] = 18009, }; static TSParseActionEntry ts_parse_actions[] = { @@ -28071,699 +28705,699 @@ static TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commands, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), [57] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_command, 1), [59] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_command, 1), [61] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_command_identifier, 1), [63] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_command_identifier, 1), [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), [91] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commands, 1), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), [95] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commands_repeat2, 1), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), [101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commands_singleline_repeat2, 1), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), [105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dec_number, 1), [107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__dec_number, 1), - [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__search_command, 1, .production_id = 1), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__search_command, 1, .production_id = 1), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_arged_command, 1, .production_id = 1), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_arged_command, 1, .production_id = 1), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_help_command, 1, .production_id = 1), [129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_help_command, 1, .production_id = 1), - [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_offsets_command, 2), - [133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_offsets_command, 2), - [135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpret_command, 2, .production_id = 1), - [137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpret_command, 2, .production_id = 1), - [139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpret_command, 1, .production_id = 1), - [141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpret_command, 1, .production_id = 1), - [143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__system_command, 1, .production_id = 1), - [145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__system_command, 1, .production_id = 1), - [147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_arged_command, 1, .production_id = 1), - [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_arged_command, 1, .production_id = 1), - [151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__macro_arged_command, 1, .production_id = 1), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__macro_arged_command, 1, .production_id = 1), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_offsetssizes_command, 2), - [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_offsetssizes_command, 2), - [173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(363), - [178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_args_repeat1, 2), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(83), - [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(293), - [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(82), - [189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(402), - [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(19), - [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(17), - [198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_Cf_cmd, 1, .production_id = 1), - [200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_Cf_cmd, 1, .production_id = 1), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_args, 1), - [218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_args, 1), + [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_offsetssizes_command, 2), + [133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_offsetssizes_command, 2), + [135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_offsets_command, 2), + [137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_offsets_command, 2), + [139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__macro_arged_command, 1, .production_id = 1), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__macro_arged_command, 1, .production_id = 1), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__search_command, 1, .production_id = 1), + [159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__search_command, 1, .production_id = 1), + [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpret_command, 2, .production_id = 2), + [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpret_command, 2, .production_id = 2), + [165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__system_command, 1, .production_id = 1), + [167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__system_command, 1, .production_id = 1), + [169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpret_command, 1, .production_id = 2), + [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpret_command, 1, .production_id = 2), + [173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_args, 1), + [175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_args, 1), + [177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), + [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(361), + [182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_args_repeat1, 2), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(82), + [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(282), + [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(77), + [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(420), + [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(26), + [199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(24), + [202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_Cf_cmd, 1, .production_id = 1), + [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_Cf_cmd, 1, .production_id = 1), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), [220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_dot_args, 1), [222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_dot_args, 1), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pf_args_repeat1, 2), - [236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pf_args_repeat1, 2), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pf_args_repeat1, 2), SHIFT_REPEAT(103), - [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_args_repeat1, 2), SHIFT_REPEAT(335), - [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_args_repeat1, 2), SHIFT_REPEAT(30), - [247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_args_repeat1, 2), SHIFT_REPEAT(28), - [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_args, 1), - [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_args, 1), - [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__env_command, 1, .production_id = 1), - [256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__env_command, 1, .production_id = 1), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(324), - [275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), - [277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 1), - [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arg, 1), - [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_arg, 2), - [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_arg, 2), - [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_substitution_arg, 3), - [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_substitution_arg, 3), - [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_arg, 3), - [295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_arg, 3), - [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg, 1, .production_id = 3), - [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg, 1, .production_id = 3), - [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_identifier, 1), - [303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arg_identifier, 1), - [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_with_paren, 3, .production_id = 13), - [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_with_paren, 3, .production_id = 13), - [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_arg, 3), - [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_arg, 3), + [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__env_command, 1, .production_id = 1), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__env_command, 1, .production_id = 1), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_args, 1), + [250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_args, 1), + [252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pf_args_repeat1, 2), + [254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pf_args_repeat1, 2), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pf_args_repeat1, 2), SHIFT_REPEAT(102), + [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_args_repeat1, 2), SHIFT_REPEAT(345), + [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_args_repeat1, 2), SHIFT_REPEAT(20), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_args_repeat1, 2), SHIFT_REPEAT(21), + [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg, 1), + [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arg, 1), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), + [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(335), + [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), + [283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), + [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg, 1, .production_id = 5), + [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg, 1, .production_id = 5), + [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_arg, 3), + [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_arg, 3), + [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_with_paren, 3, .production_id = 16), + [295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_with_paren, 3, .production_id = 16), + [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_arg, 3), + [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_arg, 3), + [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_substitution_arg, 3), + [303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_substitution_arg, 3), + [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_identifier, 1), + [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arg_identifier, 1), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_arg, 2), + [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_arg, 2), [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_arg, 2), [315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_arg, 2), - [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_dot_arg, 1), - [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_dot_arg, 1), - [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pf_dot_concatenation_repeat1, 2), - [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pf_dot_concatenation_repeat1, 2), - [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_dot_concatenation_repeat1, 2), SHIFT_REPEAT(374), + [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pf_dot_concatenation_repeat1, 2), + [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pf_dot_concatenation_repeat1, 2), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_dot_concatenation_repeat1, 2), SHIFT_REPEAT(380), + [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_dot_arg, 1), + [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_dot_arg, 1), [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_dot_concatenation, 2), [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_dot_concatenation, 2), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), [334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_concatenation, 2), [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_concatenation, 2), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_arg, 1), - [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_arg, 1), - [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pf_concatenation_repeat1, 2), - [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pf_concatenation_repeat1, 2), - [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_concatenation_repeat1, 2), SHIFT_REPEAT(346), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pf_concatenation_repeat1, 2), + [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pf_concatenation_repeat1, 2), + [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_concatenation_repeat1, 2), SHIFT_REPEAT(352), + [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_arg, 1), + [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_arg, 1), [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pf_dot_arg_identifier, 1), [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pf_dot_arg_identifier, 1), [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_arg_identifier, 1), [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_arg_identifier, 1), - [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pf_arg_parentheses, 3, .production_id = 14), - [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pf_arg_parentheses, 3, .production_id = 14), - [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grep_specifier_repeat1, 2), - [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_grep_specifier_repeat1, 2), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_grep_specifier_repeat1, 2), SHIFT_REPEAT(107), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_grep_specifier_repeat1, 2), SHIFT_REPEAT(14), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_grep_specifier_repeat1, 2), SHIFT_REPEAT(12), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grep_specifier, 1), - [380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_grep_specifier, 1), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__env_command_identifier, 1), - [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__env_command_identifier, 1), + [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pf_arg_parentheses, 3, .production_id = 17), + [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pf_arg_parentheses, 3, .production_id = 17), + [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__env_command_identifier, 1), + [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__env_command_identifier, 1), + [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_grep_specifier_repeat1, 2), + [369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_grep_specifier_repeat1, 2), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_grep_specifier_repeat1, 2), SHIFT_REPEAT(107), + [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_grep_specifier_repeat1, 2), SHIFT_REPEAT(28), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_grep_specifier_repeat1, 2), SHIFT_REPEAT(9), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grep_specifier, 1), + [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_grep_specifier, 1), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__eq_sep_key_concatenation_repeat1, 2), [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__eq_sep_key_concatenation_repeat1, 2), - [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__eq_sep_key_concatenation_repeat1, 2), SHIFT_REPEAT(345), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__eq_sep_val, 1), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__eq_sep_val, 1), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_eval_arg, 1), - [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_eval_arg, 1), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__eq_sep_key_concatenation, 2), - [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__eq_sep_key_concatenation, 2), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_dot_args, 2), - [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_dot_args, 2), - [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tmp_eval_arg_repeat1, 2), - [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tmp_eval_arg_repeat1, 2), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tmp_eval_arg_repeat1, 2), SHIFT_REPEAT(115), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pf_dot_args_repeat1, 2), - [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pf_dot_args_repeat1, 2), - [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_dot_args_repeat1, 2), SHIFT_REPEAT(470), - [439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(316), - [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__eq_sep_key, 1), - [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__eq_sep_key, 1), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_dot_concatenation_repeat1, 2), SHIFT_REPEAT(371), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_grep_specifier_repeat1, 2), SHIFT_REPEAT(130), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_grep_specifier_repeat1, 2), SHIFT_REPEAT(23), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_grep_specifier_repeat1, 2), SHIFT_REPEAT(31), - [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_eval_args, 2), - [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_eval_args, 2), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_args, 1), - [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_args, 1), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_eval_args, 1), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_eval_args, 1), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pf_dot_args_repeat1, 4), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pf_dot_args_repeat1, 4), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__eq_sep_val_concatenation, 2), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__eq_sep_val_concatenation, 2), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__eq_sep_val_concatenation_repeat1, 2), - [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__eq_sep_val_concatenation_repeat1, 2), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__eq_sep_val_concatenation_repeat1, 2), SHIFT_REPEAT(303), - [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tmp_eval_args_repeat1, 2), - [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tmp_eval_args_repeat1, 2), - [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tmp_eval_args_repeat1, 2), SHIFT_REPEAT(420), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_content, 2, .production_id = 10), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_content, 2, .production_id = 10), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_content, 4, .production_id = 10), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_content, 4, .production_id = 10), - [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_content, 5, .production_id = 10), - [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_content, 5, .production_id = 10), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_content, 6, .production_id = 10), - [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_content, 6, .production_id = 10), - [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_comment_command, 2), - [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_comment_command, 2), - [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_eq_sep_args, 1), - [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_eq_sep_args, 1), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command, 1), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_content, 3, .production_id = 10), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_content, 3, .production_id = 10), - [640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_flags_command, 2), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_flags_command, 2), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__eq_sep_key_concatenation_repeat1, 2), SHIFT_REPEAT(354), + [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__eq_sep_key_concatenation, 2), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__eq_sep_key_concatenation, 2), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(326), + [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__eq_sep_key, 1), + [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__eq_sep_key, 1), + [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_dot_args, 2), + [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_dot_args, 2), + [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tmp_eval_arg_repeat1, 2), + [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tmp_eval_arg_repeat1, 2), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tmp_eval_arg_repeat1, 2), SHIFT_REPEAT(115), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pf_dot_args_repeat1, 2), + [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pf_dot_args_repeat1, 2), + [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_dot_args_repeat1, 2), SHIFT_REPEAT(473), + [434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_dot_concatenation_repeat1, 2), SHIFT_REPEAT(379), + [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__eq_sep_val, 1), + [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__eq_sep_val, 1), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_eval_arg, 1), + [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_eval_arg, 1), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_eval_args, 1), + [453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_eval_args, 1), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_args, 1), + [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_args, 1), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_grep_specifier_repeat1, 2), SHIFT_REPEAT(143), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_grep_specifier_repeat1, 2), SHIFT_REPEAT(15), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_grep_specifier_repeat1, 2), SHIFT_REPEAT(13), + [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pf_dot_args_repeat1, 4), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pf_dot_args_repeat1, 4), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_eval_args, 2), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_eval_args, 2), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__eq_sep_val_concatenation_repeat1, 2), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__eq_sep_val_concatenation_repeat1, 2), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__eq_sep_val_concatenation_repeat1, 2), SHIFT_REPEAT(309), + [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tmp_eval_args_repeat1, 2), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tmp_eval_args_repeat1, 2), + [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tmp_eval_args_repeat1, 2), SHIFT_REPEAT(429), + [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__eq_sep_val_concatenation, 2), + [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__eq_sep_val_concatenation, 2), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command, 1), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_content, 6, .production_id = 13), + [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_content, 6, .production_id = 13), + [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_content, 5, .production_id = 13), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_content, 5, .production_id = 13), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_content, 4, .production_id = 13), + [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_content, 4, .production_id = 13), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_eq_sep_args, 1), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_eq_sep_args, 1), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_comment_command, 2), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_comment_command, 2), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_content, 3, .production_id = 13), + [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_content, 3, .production_id = 13), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_flags_command, 2), + [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_flags_command, 2), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_content, 2, .production_id = 13), + [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_content, 2, .production_id = 13), [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_function_command, 2), [648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_function_command, 2), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_offsetssizes_command, 3), - [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_offsetssizes_command, 3), - [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_dot_cmd_args, 1), - [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_dot_cmd_args, 1), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_cmd, 2, .production_id = 4), - [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_cmd, 2, .production_id = 4), - [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_Cf_cmd, 2, .production_id = 4), - [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_Cf_cmd, 2, .production_id = 4), - [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__system_command, 2, .production_id = 4), - [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__system_command, 2, .production_id = 4), - [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pf_arged_command, 1, .production_id = 1), - [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pf_arged_command, 1, .production_id = 1), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_step_command, 3), - [682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_step_command, 3), - [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_seek_command, 3), - [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_seek_command, 3), - [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_blksz_command, 3), - [690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_blksz_command, 3), - [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_arch_command, 3), - [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_arch_command, 3), - [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_bits_command, 3), - [698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_bits_command, 3), - [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_nthi_command, 3), - [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_nthi_command, 3), - [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_eval_command, 3), - [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_eval_command, 3), - [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_sections_command, 2), - [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_sections_command, 2), - [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_fs_command, 3), - [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_fs_command, 3), - [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_reli_command, 3), - [718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_reli_command, 3), - [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_kuery_command, 3), - [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_kuery_command, 3), - [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_fd_command, 3), - [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_fd_command, 3), - [728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_reg_command, 3), - [730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_reg_command, 3), - [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_file_command, 3), - [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_file_command, 3), - [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_string_command, 3), - [738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_string_command, 3), - [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_value_command, 3), - [742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_value_command, 3), - [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_hex_command, 3), - [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_hex_command, 3), - [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arged_command, 1, .production_id = 2), - [750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arged_command, 1, .production_id = 2), - [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_command, 2, .production_id = 7), - [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_command, 2, .production_id = 7), - [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__env_command, 2, .production_id = 4), - [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__env_command, 2, .production_id = 4), - [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_legacy_quoted_command, 3, .production_id = 8), - [762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_legacy_quoted_command, 3, .production_id = 8), - [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpret_command, 3, .production_id = 9), - [766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpret_command, 3, .production_id = 9), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__math_arged_command, 2, .production_id = 4), - [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__math_arged_command, 2, .production_id = 4), - [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__macro_arged_command, 2, .production_id = 4), - [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__macro_arged_command, 2, .production_id = 4), - [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_call_content, 2), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_call_content, 2), - [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__Cf_args, 2), - [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__Cf_args, 2), - [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_new_cmd, 3, .production_id = 9), - [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_new_cmd, 3, .production_id = 9), - [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpret_command, 2, .production_id = 5), - [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpret_command, 2, .production_id = 5), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_dot_cmd, 3, .production_id = 9), - [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_dot_cmd, 3, .production_id = 9), - [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpret_command, 2, .production_id = 6), - [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpret_command, 2, .production_id = 6), - [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_enable_command, 2, .production_id = 1), - [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_enable_command, 2, .production_id = 1), - [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__last_command, 1, .production_id = 1), - [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__last_command, 1, .production_id = 1), - [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_dbta_command, 2), - [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_dbta_command, 2), - [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_dbtb_command, 2), - [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_dbtb_command, 2), - [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_dbts_command, 2), - [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_dbts_command, 2), - [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_new_args, 2), - [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_new_args, 2), - [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_call_content, 1), - [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_call_content, 1), - [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpret_arg, 1), - [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpret_arg, 1), - [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_register_command, 2), - [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_register_command, 2), - [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_dbgmap_command, 2), - [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_dbgmap_command, 2), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_iomap_command, 2), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_iomap_command, 2), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_args, 2), - [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_args, 2), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pointer_arged_command, 2, .production_id = 4), - [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pointer_arged_command, 2, .production_id = 4), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_offsets_command, 3), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_offsets_command, 3), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_eq_sep_args, 3), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_eq_sep_args, 3), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_call_full_content, 2), - [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_call_full_content, 2), - [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_file_lines_command, 3), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_file_lines_command, 3), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_string_command, 2), - [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_string_command, 2), - [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grep_specifier, 2), - [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_grep_specifier, 2), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_symbol_command, 2), - [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_symbol_command, 2), - [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_segments_command, 2), - [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_segments_command, 2), - [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_hit_command, 4, .production_id = 15), - [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_hit_command, 4, .production_id = 15), - [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_comment_command, 4), - [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_comment_command, 4), - [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_flags_command, 4), - [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_flags_command, 4), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_function_command, 4), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_function_command, 4), - [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_fromto_command, 4), - [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_fromto_command, 4), - [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_command, 3), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_command, 3), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__search_command, 2, .production_id = 4), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__search_command, 2, .production_id = 4), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pf_arged_command, 2, .production_id = 4), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pf_arged_command, 2, .production_id = 4), - [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grep_command, 3, .production_id = 11), - [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_grep_command, 3, .production_id = 11), - [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpret_command, 2, .production_id = 4), - [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpret_command, 2, .production_id = 4), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_import_command, 2), - [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_import_command, 2), - [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_instrs_command, 2), - [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_instrs_command, 2), - [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_arged_command_question, 2, .production_id = 4), - [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_arged_command_question, 2, .production_id = 4), - [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_bbs_command, 2), - [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_bbs_command, 2), - [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_dot_cmd_args, 3, .production_id = 16), - [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_dot_cmd_args, 3, .production_id = 16), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_threads_command, 2), - [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_threads_command, 2), - [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_arged_command, 2, .production_id = 4), - [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_arged_command, 2, .production_id = 4), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_interpret_command, 3), - [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_interpret_command, 3), - [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_interpret_offsetssizes_command, 3), - [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_interpret_offsetssizes_command, 3), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_disable_command, 2, .production_id = 1), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_disable_command, 2, .production_id = 1), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_eval_command, 3), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_eval_command, 3), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pf_arged_command, 1, .production_id = 1), + [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pf_arged_command, 1, .production_id = 1), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_args, 2), + [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_args, 2), + [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grep_command, 3, .production_id = 14), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_grep_command, 3, .production_id = 14), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_command, 3), + [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_command, 3), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_file_lines_command, 3), + [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_file_lines_command, 3), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_offsets_command, 3), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_offsets_command, 3), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_offsetssizes_command, 3), + [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_offsetssizes_command, 3), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arged_command, 1, .production_id = 3), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arged_command, 1, .production_id = 3), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_command, 2, .production_id = 9), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_command, 2, .production_id = 9), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__env_command, 2, .production_id = 6), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__env_command, 2, .production_id = 6), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_step_command, 3), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_step_command, 3), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_seek_command, 3), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_seek_command, 3), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_blksz_command, 3), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_blksz_command, 3), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_arch_command, 3), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_arch_command, 3), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_bits_command, 3), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_bits_command, 3), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_nthi_command, 3), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_nthi_command, 3), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_call_full_content, 2), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_call_full_content, 2), + [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_fs_command, 3), + [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_fs_command, 3), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_reli_command, 3), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_reli_command, 3), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_kuery_command, 3), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_kuery_command, 3), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_fd_command, 3), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_fd_command, 3), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_reg_command, 3), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_reg_command, 3), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_file_command, 3), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_file_command, 3), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_string_command, 3), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_string_command, 3), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_value_command, 3), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_value_command, 3), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_hex_command, 3), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_hex_command, 3), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpret_command, 2, .production_id = 8), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpret_command, 2, .production_id = 8), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_dot_cmd_args, 1), + [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_dot_cmd_args, 1), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arged_command, 1, .production_id = 4), + [774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arged_command, 1, .production_id = 4), + [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__last_command, 1, .production_id = 1), + [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__last_command, 1, .production_id = 1), + [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_arged_command, 2, .production_id = 6), + [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_arged_command, 2, .production_id = 6), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_arged_command_question, 2, .production_id = 6), + [786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_arged_command_question, 2, .production_id = 6), + [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpret_command, 2, .production_id = 7), + [790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpret_command, 2, .production_id = 7), + [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpret_arg, 1), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpret_arg, 1), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_call_content, 1), + [798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_call_content, 1), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pf_arged_command, 2, .production_id = 6), + [802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pf_arged_command, 2, .production_id = 6), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_Cf_cmd, 2, .production_id = 6), + [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_Cf_cmd, 2, .production_id = 6), + [808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_cmd, 2, .production_id = 6), + [810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_cmd, 2, .production_id = 6), + [812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_register_command, 2), + [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_register_command, 2), + [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_new_args, 2), + [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_new_args, 2), + [820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_dbgmap_command, 2), + [822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_dbgmap_command, 2), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_iomap_command, 2), + [826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_iomap_command, 2), + [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_string_command, 2), + [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_string_command, 2), + [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_symbol_command, 2), + [834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_symbol_command, 2), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_segments_command, 2), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_segments_command, 2), + [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_sections_command, 2), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_sections_command, 2), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_import_command, 2), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_import_command, 2), + [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_eq_sep_args, 3), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_eq_sep_args, 3), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__system_command, 2, .production_id = 6), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__system_command, 2, .production_id = 6), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_legacy_quoted_command, 3, .production_id = 10), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_legacy_quoted_command, 3, .production_id = 10), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_instrs_command, 2), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_instrs_command, 2), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_bbs_command, 2), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_bbs_command, 2), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_grep_specifier, 2), + [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_grep_specifier, 2), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_threads_command, 2), + [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_threads_command, 2), + [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_dbts_command, 2), + [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_dbts_command, 2), + [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_hit_command, 4, .production_id = 18), + [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_hit_command, 4, .production_id = 18), + [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_comment_command, 4), + [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_comment_command, 4), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_flags_command, 4), + [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_flags_command, 4), + [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_function_command, 4), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_function_command, 4), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tmp_fromto_command, 4), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tmp_fromto_command, 4), + [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_dbtb_command, 2), + [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_dbtb_command, 2), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_dbta_command, 2), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_dbta_command, 2), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_dot_cmd, 3, .production_id = 12), + [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_dot_cmd, 3, .production_id = 12), + [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_enable_command, 2, .production_id = 1), + [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_enable_command, 2, .production_id = 1), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__math_arged_command, 2, .production_id = 6), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__math_arged_command, 2, .production_id = 6), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpret_command, 3, .production_id = 11), + [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpret_command, 3, .production_id = 11), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__search_command, 2, .production_id = 6), + [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__search_command, 2, .production_id = 6), + [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__macro_arged_command, 2, .production_id = 6), + [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__macro_arged_command, 2, .production_id = 6), + [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_new_cmd, 3, .production_id = 12), + [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_new_cmd, 3, .production_id = 12), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__Cf_args, 2), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__Cf_args, 2), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pf_dot_cmd_args, 3, .production_id = 19), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pf_dot_cmd_args, 3, .production_id = 19), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pointer_arged_command, 2, .production_id = 6), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pointer_arged_command, 2, .production_id = 6), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_call_content, 2), + [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_call_content, 2), + [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_html_disable_command, 2, .production_id = 1), + [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_html_disable_command, 2, .production_id = 1), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_interpret_command, 3), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_interpret_command, 3), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_iter_interpret_offsetssizes_command, 3), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_iter_interpret_offsetssizes_command, 3), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commands_repeat1, 2), [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_commands_repeat1, 2), - [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commands_repeat1, 2), SHIFT_REPEAT(264), + [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commands_repeat1, 2), SHIFT_REPEAT(273), [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commands_singleline_repeat1, 2), [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__commands_singleline_repeat1, 2), - [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commands_singleline_repeat1, 2), SHIFT_REPEAT(265), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(357), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(317), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(277), + [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commands_singleline_repeat1, 2), SHIFT_REPEAT(274), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(364), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(329), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(297), [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(322), - [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(317), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(405), - [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(13), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(20), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(329), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(410), + [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(8), + [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_args_repeat1, 2), SHIFT_REPEAT(25), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(321), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(334), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pf_args_repeat1, 2), SHIFT_REPEAT(370), - [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_args_repeat1, 2), SHIFT_REPEAT(328), - [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_args_repeat1, 2), SHIFT_REPEAT(370), - [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_args_repeat1, 2), SHIFT_REPEAT(22), - [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_args_repeat1, 2), SHIFT_REPEAT(8), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pf_args_repeat1, 2), SHIFT_REPEAT(382), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_args_repeat1, 2), SHIFT_REPEAT(344), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_args_repeat1, 2), SHIFT_REPEAT(382), + [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_args_repeat1, 2), SHIFT_REPEAT(27), + [1101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_args_repeat1, 2), SHIFT_REPEAT(22), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_arg_repeat1, 2), - [1132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_double_quoted_arg_repeat1, 2), SHIFT_REPEAT(347), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_arg_repeat1, 2), SHIFT_REPEAT(347), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_arg_repeat1, 2), SHIFT_REPEAT(25), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_arg_repeat1, 2), SHIFT_REPEAT(24), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_concatenation_repeat1, 2), SHIFT_REPEAT(343), - [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fdn_append_operator, 2), - [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fdn_append_operator, 2), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fdn_redirect_operator, 2), - [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fdn_redirect_operator, 2), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpret_search_identifier, 1), - [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpret_search_identifier, 1), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fdn_append_operator, 1), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fdn_append_operator, 1), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fdn_redirect_operator, 1), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fdn_redirect_operator, 1), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(314), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirect_command, 3, .production_id = 12), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commands_repeat2, 2), - [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commands_repeat2, 2), SHIFT_REPEAT(7), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commands, 3), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commands, 2), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_arg_repeat1, 2), - [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_single_quoted_arg_repeat1, 2), SHIFT_REPEAT(409), - [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_single_quoted_arg_repeat1, 2), SHIFT_REPEAT(409), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_content_repeat1, 2), - [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_content_repeat1, 2), SHIFT_REPEAT(37), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commands_singleline, 2), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commands_singleline_repeat2, 2), SHIFT_REPEAT(35), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commands_singleline_repeat2, 2), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commands_singleline, 1), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commands_singleline, 3), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pf_concatenation_repeat1, 2), SHIFT_REPEAT(353), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [1149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fdn_append_operator, 1), + [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fdn_append_operator, 1), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fdn_redirect_operator, 2), + [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fdn_redirect_operator, 2), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fdn_redirect_operator, 1), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fdn_redirect_operator, 1), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpret_search_identifier, 1), + [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpret_search_identifier, 1), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fdn_append_operator, 2), + [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fdn_append_operator, 2), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_arg_repeat1, 2), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_double_quoted_arg_repeat1, 2), SHIFT_REPEAT(376), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_arg_repeat1, 2), SHIFT_REPEAT(376), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_arg_repeat1, 2), SHIFT_REPEAT(17), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_arg_repeat1, 2), SHIFT_REPEAT(18), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(324), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirect_command, 3, .production_id = 15), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commands, 2), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_commands_repeat2, 2), + [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_commands_repeat2, 2), SHIFT_REPEAT(7), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commands, 3), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_arg_repeat1, 2), + [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_single_quoted_arg_repeat1, 2), SHIFT_REPEAT(412), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_single_quoted_arg_repeat1, 2), SHIFT_REPEAT(412), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commands_singleline, 2), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commands_singleline, 3), + [1321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commands_singleline, 1), + [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commands_singleline_repeat2, 2), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commands_singleline_repeat2, 2), SHIFT_REPEAT(34), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_content_repeat1, 2), + [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_content_repeat1, 2), SHIFT_REPEAT(36), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commands_singleline_repeat2, 2), SHIFT_REPEAT(32), - [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(323), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [1423] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(327), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1431] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), }; #ifdef __cplusplus @@ -28785,23 +29419,26 @@ extern const TSLanguage *tree_sitter_rzcmd(void) { .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, + .external_token_count = EXTERNAL_TOKEN_COUNT, + .state_count = STATE_COUNT, .large_state_count = LARGE_STATE_COUNT, - .symbol_metadata = ts_symbol_metadata, - .parse_table = (const unsigned short *)ts_parse_table, + .production_id_count = PRODUCTION_ID_COUNT, + .field_count = FIELD_COUNT, + .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, + .parse_table = (const uint16_t *)ts_parse_table, .small_parse_table = (const uint16_t *)ts_small_parse_table, .small_parse_table_map = (const uint32_t *)ts_small_parse_table_map, .parse_actions = ts_parse_actions, - .lex_modes = ts_lex_modes, .symbol_names = ts_symbol_names, - .public_symbol_map = ts_symbol_map, - .alias_sequences = (const TSSymbol *)ts_alias_sequences, - .field_count = FIELD_COUNT, .field_names = ts_field_names, .field_map_slices = (const TSFieldMapSlice *)ts_field_map_slices, .field_map_entries = (const TSFieldMapEntry *)ts_field_map_entries, - .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, + .symbol_metadata = ts_symbol_metadata, + .public_symbol_map = ts_symbol_map, + .alias_map = ts_non_terminal_alias_map, + .alias_sequences = (const TSSymbol *)ts_alias_sequences, + .lex_modes = ts_lex_modes, .lex_fn = ts_lex, - .external_token_count = EXTERNAL_TOKEN_COUNT, .external_scanner = { (const bool *)ts_external_scanner_states, ts_external_scanner_symbol_map, diff --git a/shlr/rizin-shell-parser/src/tree_sitter/parser.h b/shlr/rizin-shell-parser/src/tree_sitter/parser.h index 11bf4fc42a..a3a87bd1dd 100644 --- a/shlr/rizin-shell-parser/src/tree_sitter/parser.h +++ b/shlr/rizin-shell-parser/src/tree_sitter/parser.h @@ -13,6 +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 TSSymbol; typedef uint16_t TSFieldId; @@ -30,11 +32,10 @@ typedef struct { uint16_t length; } TSFieldMapSlice; -typedef uint16_t TSStateId; - typedef struct { - bool visible : 1; - bool named : 1; + bool visible; + bool named; + bool supertype; } TSSymbolMetadata; typedef struct TSLexer TSLexer; @@ -56,21 +57,21 @@ typedef enum { TSParseActionTypeRecover, } TSParseActionType; -typedef struct { - union { - struct { - TSStateId state; - bool extra : 1; - bool repetition : 1; - } shift; - struct { - TSSymbol symbol; - int16_t dynamic_precedence; - uint8_t child_count; - uint8_t production_id; - } reduce; - } params; - TSParseActionType type : 4; +typedef union { + struct { + uint8_t type; + TSStateId state; + bool extra; + bool repetition; + } shift; + struct { + uint8_t type; + uint8_t child_count; + TSSymbol symbol; + int16_t dynamic_precedence; + uint16_t production_id; + } reduce; + uint8_t type; } TSParseAction; typedef struct { @@ -82,7 +83,7 @@ typedef union { TSParseAction action; struct { uint8_t count; - bool reusable : 1; + bool reusable; } entry; } TSParseActionEntry; @@ -92,13 +93,24 @@ struct TSLanguage { uint32_t alias_count; uint32_t token_count; uint32_t external_token_count; - const char **symbol_names; - const TSSymbolMetadata *symbol_metadata; - const uint16_t *parse_table; - const TSParseActionEntry *parse_actions; - const TSLexMode *lex_modes; - const TSSymbol *alias_sequences; + uint32_t state_count; + uint32_t large_state_count; + uint32_t production_id_count; + uint32_t field_count; uint16_t max_alias_sequence_length; + const uint16_t *parse_table; + const uint16_t *small_parse_table; + const uint32_t *small_parse_table_map; + const TSParseActionEntry *parse_actions; + const char **symbol_names; + const char **field_names; + const TSFieldMapSlice *field_map_slices; + const TSFieldMapEntry *field_map_entries; + const TSSymbolMetadata *symbol_metadata; + const TSSymbol *public_symbol_map; + const uint16_t *alias_map; + const TSSymbol *alias_sequences; + const TSLexMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -111,14 +123,6 @@ struct TSLanguage { unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; - uint32_t field_count; - const TSFieldMapSlice *field_map_slices; - const TSFieldMapEntry *field_map_entries; - const char **field_names; - uint32_t large_state_count; - const uint16_t *small_parse_table; - const uint32_t *small_parse_table_map; - const TSSymbol *public_symbol_map; }; /* @@ -167,66 +171,50 @@ struct TSLanguage { #define ACTIONS(id) id -#define SHIFT(state_value) \ - { \ - { \ - .params = { \ - .shift = { \ - .state = state_value \ - } \ - }, \ - .type = TSParseActionTypeShift \ - } \ - } +#define SHIFT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = state_value \ + } \ + }} #define SHIFT_REPEAT(state_value) \ - { \ - { \ - .params = { \ - .shift = { \ - .state = state_value, \ - .repetition = true \ - } \ - }, \ - .type = TSParseActionTypeShift \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = state_value, \ + .repetition = true \ } \ - } - -#define RECOVER() \ - { \ - { .type = TSParseActionTypeRecover } \ - } + }} #define SHIFT_EXTRA() \ - { \ - { \ - .params = { \ - .shift = { \ - .extra = true \ - } \ - }, \ - .type = TSParseActionTypeShift \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .extra = true \ } \ - } + }} #define REDUCE(symbol_val, child_count_val, ...) \ - { \ - { \ - .params = { \ - .reduce = { \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ - }, \ - .type = TSParseActionTypeReduce \ - } \ - } + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_val, \ + .child_count = child_count_val, \ + __VA_ARGS__ \ + }, \ + }} -#define ACCEPT_INPUT() \ - { \ - { .type = TSParseActionTypeAccept } \ - } +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} #ifdef __cplusplus } diff --git a/subprojects/packagefiles/tree-sitter-0.18.0/meson.build b/subprojects/packagefiles/tree-sitter-0.19.4/meson.build similarity index 100% rename from subprojects/packagefiles/tree-sitter-0.18.0/meson.build rename to subprojects/packagefiles/tree-sitter-0.19.4/meson.build diff --git a/subprojects/tree-sitter.wrap b/subprojects/tree-sitter.wrap index d2a8179534..23d4574d62 100644 --- a/subprojects/tree-sitter.wrap +++ b/subprojects/tree-sitter.wrap @@ -1,6 +1,6 @@ [wrap-file] -source_url = https://github.com/tree-sitter/tree-sitter/archive/0.18.0.tar.gz -source_filename = 0.18.0.tar.gz -source_hash = 574458dbc8b6761027d3090bc2fd474f17ea77d875d4713ed9260d0def125bce -patch_directory = tree-sitter-0.18.0 -directory = tree-sitter-0.18.0 \ No newline at end of file +source_url = https://github.com/tree-sitter/tree-sitter/archive/v0.19.4.tar.gz +source_filename = v0.19.4.tar.gz +source_hash = 98e6b7f77d277235ef43023a8eee37745d1bc315c138481ed1b054cff158e817 +patch_directory = tree-sitter-0.19.4 +directory = tree-sitter-0.19.4 \ No newline at end of file diff --git a/sys/meson_git_wrapper.py b/sys/meson_git_wrapper.py index 646672d8bc..8e73a7fdad 100755 --- a/sys/meson_git_wrapper.py +++ b/sys/meson_git_wrapper.py @@ -33,7 +33,11 @@ def simple_git_execution(args): def parse(): if len(sys.argv) <= 3: - print("Usage: %s [git_args...]") + print( + "Usage: {} [git_args...]".format( + sys.argv[0] + ) + ) sys.exit(1) git_exe = sys.argv[1] diff --git a/sys/meson_tree_sitter_generate.py b/sys/meson_tree_sitter_generate.py new file mode 100755 index 0000000000..de6c679770 --- /dev/null +++ b/sys/meson_tree_sitter_generate.py @@ -0,0 +1,41 @@ +#!/usr/bin/env python +# +# SPDX-FileCopyrightText: 2021 ret2libc +# SPDX-License-Identifier: LGPL-3.0-only + +""" Python script to execute tree-sitter generate in the right output folder, +necessary because tree-sitter generate does not allow to specify it """ + +import os +import subprocess +import sys + + +def parse(): + if len(sys.argv) <= 3: + print( + "Usage: {} ".format(sys.argv[0]) + ) + sys.exit(1) + + tree_sitter_exe = sys.argv[1] + output_dir = sys.argv[2] + grammar_js = sys.argv[3] + + return tree_sitter_exe, output_dir, grammar_js + + +def main(): + tree_sitter_exe, output_dir, grammar_js = parse() + + grammar_js = os.path.abspath(grammar_js) + output_dir = os.path.abspath(output_dir) + tree_sitter_exe = os.path.abspath(tree_sitter_exe) + + subprocess.run( + [tree_sitter_exe, "generate", grammar_js], check=True, cwd=output_dir + ) + + +if __name__ == "__main__": + main()